Shocker130000

Dino Daycare GUI

May 12th, 2018
3,377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4. -- Objects
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local TextButton_2 = Instance.new("TextButton")
  11. local TextButton_3 = Instance.new("TextButton")
  12. local TextButton_4 = Instance.new("TextButton")
  13. local TextLabel_2 = Instance.new("TextLabel")
  14.  
  15. -- Properties
  16.  
  17. ScreenGui.Parent = game.CoreGui
  18.  
  19. Frame.Parent = ScreenGui
  20. Frame.BackgroundColor3 = Color3.new(0.67451, 1, 0.854902)
  21. Frame.BackgroundTransparency = 0.050000000745058
  22. Frame.Position = UDim2.new(0, 0, 0.199288264, 0)
  23. Frame.Size = UDim2.new(0, 230, 0, 482)
  24.  
  25. TextLabel.Parent = Frame
  26. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  27. TextLabel.BackgroundTransparency = 1
  28. TextLabel.Position = UDim2.new(0.0391304344, 0, 0.0145228216, 0)
  29. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  30. TextLabel.Font = Enum.Font.SourceSansLight
  31. TextLabel.Text = "DinoBeGone"
  32. TextLabel.TextScaled = true
  33. TextLabel.TextSize = 14
  34. TextLabel.TextWrapped = true
  35.  
  36. TextButton.Parent = Frame
  37. TextButton.BackgroundColor3 = Color3.new(0.470588, 1, 0.717647)
  38. TextButton.BackgroundTransparency = 0.34999999403954
  39. TextButton.Position = UDim2.new(0.0391304344, 0, 0.186721995, 0)
  40. TextButton.Size = UDim2.new(0, 200, 0, 50)
  41. TextButton.Font = Enum.Font.SourceSansLight
  42. TextButton.Text = "Toggle Toddler"
  43. TextButton.TextScaled = true
  44. TextButton.TextSize = 14
  45. TextButton.TextWrapped = true
  46.  
  47. TextButton_2.Parent = Frame
  48. TextButton_2.BackgroundColor3 = Color3.new(0.470588, 1, 0.717647)
  49. TextButton_2.BackgroundTransparency = 0.34999999403954
  50. TextButton_2.Position = UDim2.new(0.0391304344, 0, 0.379668057, 0)
  51. TextButton_2.Size = UDim2.new(0, 200, 0, 50)
  52. TextButton_2.Font = Enum.Font.SourceSansLight
  53. TextButton_2.Text = "Dab"
  54. TextButton_2.TextScaled = true
  55. TextButton_2.TextSize = 14
  56. TextButton_2.TextWrapped = true
  57.  
  58. TextButton_3.Parent = Frame
  59. TextButton_3.BackgroundColor3 = Color3.new(0.470588, 1, 0.717647)
  60. TextButton_3.BackgroundTransparency = 0.34999999403954
  61. TextButton_3.Position = UDim2.new(0.0391304344, 0, 0.757261395, 0)
  62. TextButton_3.Size = UDim2.new(0, 200, 0, 50)
  63. TextButton_3.Font = Enum.Font.SourceSansLight
  64. TextButton_3.Text = "Nod"
  65. TextButton_3.TextScaled = true
  66. TextButton_3.TextSize = 14
  67. TextButton_3.TextWrapped = true
  68.  
  69. TextButton_4.Parent = Frame
  70. TextButton_4.BackgroundColor3 = Color3.new(0.470588, 1, 0.717647)
  71. TextButton_4.BackgroundTransparency = 0.34999999403954
  72. TextButton_4.Position = UDim2.new(0.0391304344, 0, 0.564315379, 0)
  73. TextButton_4.Size = UDim2.new(0, 200, 0, 50)
  74. TextButton_4.Font = Enum.Font.SourceSansLight
  75. TextButton_4.Text = "Disco"
  76. TextButton_4.TextScaled = true
  77. TextButton_4.TextSize = 14
  78. TextButton_4.TextWrapped = true
  79.  
  80. TextLabel_2.Parent = Frame
  81. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  82. TextLabel_2.BackgroundTransparency = 1
  83. TextLabel_2.Position = UDim2.new(0.0391304344, 0, 0.881742775, 0)
  84. TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
  85. TextLabel_2.Font = Enum.Font.SourceSansLight
  86. TextLabel_2.Text = "Made By HoaxyxC#0368 On Discord"
  87. TextLabel_2.TextColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  88. TextLabel_2.TextScaled = true
  89. TextLabel_2.TextWrapped = true
  90.  
  91. -- Scripts
  92. TextButton.MouseButton1Down:connect(function()
  93. game.ReplicatedStorage.ToddlerMorph:FireServer()
  94. end)
  95.  
  96. TextButton_2.MouseButton1Down:connect(function()
  97. game.ReplicatedStorage["Dab"]:Clone().Parent = game.Players.LocalPlayer.Backpack
  98. end)
  99.  
  100. TextButton_3.MouseButton1Down:connect(function()
  101. game.ReplicatedStorage["Nod"]:Clone().Parent = game.Players.LocalPlayer.Backpack
  102. end)
  103.  
  104. TextButton_4.MouseButton1Down:connect(function()
  105. game.ReplicatedStorage["Disco"]:Clone().Parent = game.Players.LocalPlayer.Backpack
  106. end)
Add Comment
Please, Sign In to add comment