Roblox Dinosaur Simulator How To Open Menu

Oct 14th, 2018
Never

Roblox Dinosaur Simulator How To Open Menu Xbox One

Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. local frame = Instance.new('Frame')
  2. local main = Instance.new('Frame')
  3. local credits = Instance.new('TextBox')
  4. local loadp = Instance.new('TextButton')
  5. local food = Instance.new('TextButton')
  6. --Properties:
  7. frame.Parent = ScreenGui
  8. frame.Position = UDim2.new(0.450560659, 0, 0, 0)
  9. frame.Style = Enum.FrameStyle.DropShadow
  10. open.Name = 'open'
  11. open.BackgroundColor3 = Color3.new(0, 0, 0)
  12. open.Position = UDim2.new(-0.0624999925, 0, -0.789473712, 0)
  13. open.Font = Enum.Font.SciFi
  14. open.TextColor3 = Color3.new(1, 1, 1)
  15. open.TextWrapped = true
  16. frame.Visible = false
  17. end)
  18. main.Name = 'main'
  19. main.BackgroundColor3 = Color3.new(0, 0, 0)
  20. main.Position = UDim2.new(0.407747209, 0, 0.0823045224, 0)
  21. main.Visible = false
  22. main.Draggable = true
  23. title.Name = 'title'
  24. title.BackgroundColor3 = Color3.new(0, 0, 0)
  25. title.Position = UDim2.new(-0.055555556, 0, -0.0806451589, 0)
  26. title.Font = Enum.Font.SciFi
  27. title.TextColor3 = Color3.new(1, 1, 1)
  28. title.TextSize = 14
  29. credits.Parent = main
  30. credits.Position = UDim2.new(-0.055555556, 0, 1, 0)
  31. credits.Font = Enum.Font.SciFi
  32. credits.TextColor3 = Color3.new(1, 1, 1)
  33. credits.TextSize = 14
  34. savep.Parent = main
  35. savep.Position = UDim2.new(0.0333333351, 0, 0.0645161271, 0)
  36. savep.Font = Enum.Font.Cartoon
  37. savep.TextColor3 = Color3.new(1, 1, 1)
  38. savep.TextSize = 14
  39. savep.MouseButton1Click:connect(function()
  40. asd=game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  41. loadp.Parent = main
  42. loadp.Position = UDim2.new(0.577777803, 0, 0.0645161271, 0)
  43. loadp.Font = Enum.Font.Cartoon
  44. loadp.TextColor3 = Color3.new(1, 1, 1)
  45. loadp.TextSize = 14
  46. loadp.MouseButton1Click:connect(function()
  47. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=
  48. end)
  49. speed.Name = 'speed'
  50. speed.BackgroundColor3 = Color3.new(0, 0, 0)
  51. speed.Position = UDim2.new(0.0333333351, 0, 0.606664002, 0)
  52. speed.Font = Enum.Font.Cartoon
  53. speed.TextColor3 = Color3.new(1, 1, 1)
  54. speed.TextSize = 14
  55. speed.MouseButton1Click:connect(function()
  56. dino = 'Barosaurus'
  57. wait(0.5)
  58. end)
  59. food.Name = 'food'
  60. food.BackgroundColor3 = Color3.new(0, 0, 0)
  61. food.Position = UDim2.new(0.577777803, 0, 0.596044064, 0)
  62. food.Font = Enum.Font.Cartoon
  63. food.TextColor3 = Color3.new(1, 1, 1)
  64. food.TextSize = 14
  65. food.MouseButton1Click:connect(function()
  66. game.Workspace.GameEvents.EatPlant:FireServer(Workspace.GameMap.Ferns.Fern, 2)
  67. close.Parent = main
  68. close.Position = UDim2.new(1.05555558, 0, -0.0806451589, 0)
  69. close.Font = Enum.Font.SciFi
  70. close.TextColor3 = Color3.new(1, 1, 1)
  71. close.TextSize = 14
  72. close.MouseButton1Click:connect(function()
  73. main.Visible = false
RAW Paste Data

(code) how to get every pet instantly on bubble gum simulator (roblox) yo guys im on the road to 100,000 subs! Help me get there by subscribing!! Controls: W, A, S, D or use the arrows keys to move. Left click on a fern to eat it (if you're an herbivore) or body of water to drink. Hold down Shift to sprint, this will reduce your energy. Press F to lay an egg as an adult. When your baby hatches from an egg, you can use multiple roars and calls to control your baby. Pressing R allows your baby to roam and attack freely. Pressing G makes. Dinosaur Eggs were added in the Ver2.8.5 update on November 15th, 2015. Their default style is a beige/cream color and have medium-sized spots. When hovered upon, the name of the player who laid it and their username will be displayed. It takes a certain amount of time for the eggs to hatch into Al babies. These AI's will grow into an adult before despawning. When dinosaur eggs were first.

Roblox dinosaur simulator how to open menu link

Scripting a menu on Roblox can be tricky, but in this article you will learn what you need in order to create a great menu which will suit your game and will welcome your players once they join.

Firstly, you will need to design your menu before you script it. This means that you will need to insert a ScreenGui into the StarterGui service and then a Frame inside of that ScreenGui. This will be where you keep all of your GUI elements so that you can easily access them while scripting later on.

Open

You’re going to then want to insert all of the ImageLabels, ImageButtons, TextLabels, TextBoxes and TextButtons which you will need into that frame. Customise the positions, sizes, colours and text of these elements so that the GUI looks how you want it to. Here is a quick run down of each GUI element and what it does:

  • TextLabel: A TextLabel is a piece of text which you can edit on your screen which cannot be interacted with. This means you can’t click it or change its text.
  • TextButton: A TextButton is a TextLabel which you can click. You can then customise what you want to happen when the button is clicked via the MouseButtonDown events in a script.
  • TextBox: A TextBox is a piece of text which you can change, for data entry. If you had a password GUI, you could use a TextBox for typing in the password.
  • ImageLabel: An ImageLabel is a static image which cannot be interacted with, like a TextLabel. You must use a photo uploaded to Roblox to see it instead of writing text on it.
  • ImageButton: An ImageButton is an ImageLabel which you can click. Like TextButtons, you can wire them up to events in a script so that you can customise what happens when it is clicked.

To edit the properties of these GUI elements, you will want to open the Properties tab. You can find this by clicking on the View tab at the top and then on Properties.

Once you have added in all of your GUI elements, you are going to want to script them so that they can be interactive. You’re going to want to use events and change properties in your script. Here are some of the main things which you will need to do in a menu GUI script:

  • Tweening (Animating different GUI elements so that they move around your screen)

You can find out how to do these things by clicking the buttons above. I’ve also made a menu GUI tutorial which may be helpful to you, if you want a visual explanation on how to do this. You may also want to learn how to use Events, Functions and Variables as this can make scripting menus easier.

Subscribe to my channel for more videos on Roblox scripting.

Become a Channel Member and benefit from a range of perks!