Advertisement
Superprodennis

Case clicker script

Jan 9th, 2020
14,511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.52 KB | None | 0 0
  1. -- Made By Superprodennis
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local GB2 = Instance.new("TextButton")
  7. local GB1 = Instance.new("TextButton")
  8. local Exit = Instance.new("TextButton")
  9. local GB3 = Instance.new("TextButton")
  10. local GB4 = Instance.new("TextButton")
  11. local GB5 = Instance.new("TextButton")
  12. local GB6 = Instance.new("TextButton")
  13. local Openmain = Instance.new("Frame")
  14. local open = Instance.new("TextButton")
  15.  
  16.  
  17. ScreenGui.Parent = game.CoreGui
  18.  
  19. Main.Name = "Main"
  20. Main.Parent = ScreenGui
  21. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  22. Main.Position = UDim2.new(0.371843457, 0, 0.0175694786, 0)
  23. Main.Size = UDim2.new(0, 362, 0, 242)
  24. Main.Visible = false
  25. Main.Active = true
  26. Main.Draggable = true
  27.  
  28. title.Name = "title"
  29. title.Parent = Main
  30. title.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  31. title.Size = UDim2.new(0, 362, 0, 35)
  32. title.Font = Enum.Font.GothamBold
  33. title.Text = "Case Clicker GUI made by Superprodennis"
  34. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  35. title.TextSize = 14.000
  36.  
  37. GB2.Name = "GB2"
  38. GB2.Parent = Main
  39. GB2.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  40. GB2.Position = UDim2.new(0, 0, 0.144628093, 0)
  41. GB2.Size = UDim2.new(0, 189, 0, 50)
  42. GB2.Font = Enum.Font.GothamBold
  43. GB2.LineHeight = 2.000
  44. GB2.Text = "Tp to supply (comming soon)"
  45. GB2.TextColor3 = Color3.fromRGB(0, 0, 0)
  46. GB2.TextSize = 14.000
  47. GB2.MouseButton1Down:connect(function()
  48.  
  49. end)
  50.  
  51. GB1.Name = "GB1"
  52. GB1.Parent = Main
  53. GB1.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  54. GB1.Position = UDim2.new(0.522099435, 0, 0.144628093, 0)
  55. GB1.Size = UDim2.new(0, 173, 0, 50)
  56. GB1.Font = Enum.Font.GothamBold
  57. GB1.Text = "INF BUX (comming soon)"
  58. GB1.TextColor3 = Color3.fromRGB(0, 0, 0)
  59. GB1.TextSize = 14.000
  60. GB1.MouseButton1Down:connect(function()
  61.  
  62. end)
  63.  
  64. Exit.Name = "Exit"
  65. Exit.Parent = Main
  66. Exit.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  67. Exit.Position = UDim2.new(0.875690818, 0, 0.818181872, 0)
  68. Exit.Size = UDim2.new(0, 44, 0, 43)
  69. Exit.Font = Enum.Font.GothamBold
  70. Exit.Text = "Exit"
  71. Exit.TextColor3 = Color3.fromRGB(0, 0, 0)
  72. Exit.TextSize = 14.000
  73. Exit.MouseButton1Down:connect(function()
  74. Main.Visible = false
  75. Openmain.Visible = true
  76. end)
  77.  
  78.  
  79. GB3.Name = "GB3"
  80. GB3.Parent = Main
  81. GB3.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  82. GB3.Position = UDim2.new(0.522099435, 0, 0.351239681, 0)
  83. GB3.Size = UDim2.new(0, 172, 0, 50)
  84. GB3.Font = Enum.Font.GothamBold
  85. GB3.Text = "JumpPower"
  86. GB3.TextColor3 = Color3.fromRGB(0, 0, 0)
  87. GB3.TextSize = 14.000
  88. GB3.MouseButton1Down:connect(function()
  89. local Character = game.Players.LocalPlayer.Character
  90. Character.Humanoid.JumpPower = 150 -- You can change Jump Power here
  91.  
  92. end)
  93.  
  94. GB4.Name = "GB4"
  95. GB4.Parent = Main
  96. GB4.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  97. GB4.Position = UDim2.new(0, 0, 0.351239681, 0)
  98. GB4.Size = UDim2.new(0, 189, 0, 50)
  99. GB4.Font = Enum.Font.GothamBlack
  100. GB4.Text = "Speed"
  101. GB4.TextColor3 = Color3.fromRGB(0, 0, 0)
  102. GB4.TextSize = 14.000
  103. GB4.MouseButton1Down:connect(function()
  104. local Character = game.Players.LocalPlayer.Character
  105. Character.Humanoid.WalkSpeed = 50 -- You can change speed here
  106.  
  107. end)
  108.  
  109. GB5.Name = "GB5"
  110. GB5.Parent = Main
  111. GB5.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  112. GB5.Position = UDim2.new(0.522099435, 0, 0.557851255, 0)
  113. GB5.Size = UDim2.new(0, 173, 0, 50)
  114. GB5.Font = Enum.Font.GothamBold
  115. GB5.Text = "Noting"
  116. GB5.TextColor3 = Color3.fromRGB(0, 0, 0)
  117. GB5.TextSize = 14.000
  118. GB5.MouseButton1Down:connect(function()
  119.  
  120. end)
  121.  
  122. GB6.Name = "GB6"
  123. GB6.Parent = Main
  124. GB6.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  125. GB6.Position = UDim2.new(0, 0, 0.557851255, 0)
  126. GB6.Size = UDim2.new(0, 189, 0, 50)
  127. GB6.Font = Enum.Font.GothamBold
  128. GB6.Text = "Noting"
  129. GB6.TextColor3 = Color3.fromRGB(0, 0, 0)
  130. GB6.TextSize = 14.000
  131. GB6.MouseButton1Down:connect(function()
  132.  
  133. end)
  134.  
  135.  
  136. Openmain.Name = "Openmain"
  137. Openmain.Parent = ScreenGui
  138. Openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  139. Openmain.Position = UDim2.new(0.266414136, 0, 0.0175695419, 0)
  140. Openmain.Size = UDim2.new(0, 85, 0, 35)
  141. Openmain.Active = true
  142. Openmain.Draggable = true
  143.  
  144. open.Name = "open"
  145. open.Parent = Openmain
  146. open.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  147. open.Position = UDim2.new(0, 0, 1.1920929e-07, 0)
  148. open.Size = UDim2.new(0, 85, 0, 35)
  149. open.Font = Enum.Font.GothamBold
  150. open.Text = "Open"
  151. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  152. open.TextScaled = true
  153. open.TextSize = 14.000
  154. open.TextWrapped = true
  155. open.MouseButton1Down:connect(function()
  156. Openmain.Visible = false
  157. Main.Visible = true
  158. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement