Crystal4ikYT

SPEED, NOCLIP BTOOLS INF.JUMP! ROBLOX SCRIPT LUA

Jun 20th, 2020
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.94 KB | None | 0 0
  1. -- GUI By: Cool_Boy
  2. -- Scripts By: Cool_Boy
  3. -- Pastebin: https://pastebin.com/bGYdGEQj
  4.  
  5.  
  6. local _2r2t = Instance.new("ScreenGui")
  7. local MainGUI = Instance.new("Frame")
  8. local title = Instance.new("TextLabel")
  9. local speed = Instance.new("TextButton")
  10. local noclip = Instance.new("TextButton")
  11. local close = Instance.new("TextButton")
  12. local OpenGUI = Instance.new("Frame")
  13. local open = Instance.new("TextButton")
  14. --Properties:
  15. _2r2t.Name = "2r2t"
  16. _2r2t.Parent = game.CoreGui
  17.  
  18. MainGUI.Name = "MainGUI"
  19. MainGUI.Parent = _2r2t
  20. MainGUI.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  21. MainGUI.BackgroundTransparency = 0.15000000596046
  22. MainGUI.BorderColor3 = Color3.new(0.666667, 0, 0)
  23. MainGUI.BorderSizePixel = 5
  24. MainGUI.Position = UDim2.new(0.121778354, 0, 0.364864916, 0)
  25. MainGUI.Size = UDim2.new(0, 193, 0, 143)
  26. MainGUI.Visible = false
  27. MainGUI.Active = true
  28. MainGUI.Draggable = true
  29.  
  30. title.Name = "title"
  31. title.Parent = MainGUI
  32. title.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  33. title.BorderColor3 = Color3.new(0.666667, 0, 0)
  34. title.BorderSizePixel = 5
  35. title.Size = UDim2.new(0, 193, 0, 37)
  36. title.Font = Enum.Font.Arcade
  37. title.Text = "Made By Crystal"
  38. title.TextColor3 = Color3.new(1, 1, 1)
  39. title.TextScaled = true
  40. title.TextSize = 14
  41. title.TextStrokeColor3 = Color3.new(0, 0.666667, 0)
  42. title.TextStrokeTransparency = 5
  43. title.TextWrapped = true
  44.  
  45. speed.Name = "speed"
  46. speed.Parent = MainGUI
  47. speed.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  48. speed.BackgroundTransparency = 1
  49. speed.BorderColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  50. speed.BorderSizePixel = 0
  51. speed.Position = UDim2.new(0.111260444, 0, 0.412810922, 0)
  52. speed.Size = UDim2.new(0, 150, 0, 25)
  53. speed.Font = Enum.Font.Arcade
  54. speed.Text = "> Speed <"
  55. speed.TextColor3 = Color3.new(1, 1, 1)
  56. speed.TextScaled = true
  57. speed.TextSize = 14
  58. speed.TextWrapped = true
  59. speed.MouseButton1Click:connect(function()
  60.     speed = false
  61. game:GetService('RunService').Stepped:connect(function()
  62. if speed then
  63. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  64.  
  65. end
  66. end)
  67. plr = game.Players.LocalPlayer
  68. mouse = plr:GetMouse()
  69. mouse.KeyDown:connect(function(key)
  70.  
  71. if key == "x" then
  72. speed = not speed
  73. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  74. end
  75. end)
  76. game:GetService("StarterGui"):SetCore("SendNotification", {
  77. Title = "Tip:";
  78. Text = "Press X To Toggle";
  79. })
  80. end)
  81.  
  82. noclip.Name = "noclip"
  83. noclip.Parent = MainGUI
  84. noclip.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  85. noclip.BackgroundTransparency = 1
  86. noclip.BorderColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  87. noclip.BorderSizePixel = 0
  88. noclip.Position = UDim2.new(0.106345452, 0, 0.687755644, 0)
  89. noclip.Size = UDim2.new(0, 150, 0, 25)
  90. noclip.Font = Enum.Font.Arcade
  91. noclip.Text = "> Noclip <"
  92. noclip.TextColor3 = Color3.new(1, 1, 1)
  93. noclip.TextScaled = true
  94. noclip.TextSize = 14
  95. noclip.TextWrapped = true
  96. noclip.MouseButton1Click:connect(function()
  97.     noclip = false
  98. game:GetService('RunService').Stepped:connect(function()
  99. if noclip then
  100. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  101. end
  102. end)
  103. plr = game.Players.LocalPlayer
  104. mouse = plr:GetMouse()
  105. mouse.KeyDown:connect(function(key)
  106.  
  107. if key == "b" then
  108. noclip = not noclip
  109. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  110. end
  111. end)
  112. game:GetService("StarterGui"):SetCore("SendNotification", {
  113. Title = "Tip:";
  114. Text = "Press B To Toggle";
  115. })
  116. end)
  117.  
  118. close.Name = "close"
  119. close.Parent = MainGUI
  120. close.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  121. close.BorderColor3 = Color3.new(0.666667, 0, 0)
  122. close.BorderSizePixel = 5
  123. close.Position = UDim2.new(1.07253885, 0, 0, 0)
  124. close.Size = UDim2.new(0, 56, 0, 37)
  125. close.Font = Enum.Font.Arcade
  126. close.Text = "X"
  127. close.TextColor3 = Color3.new(1, 1, 1)
  128. close.TextScaled = true
  129. close.TextSize = 14
  130. close.TextWrapped = true
  131. close.MouseButton1Click:connect(function()
  132.     MainGUI.Visible = false
  133.     OpenGUI.Visible = true
  134. end)
  135.  
  136. OpenGUI.Name = "OpenGUI"
  137. OpenGUI.Parent = _2r2t
  138. OpenGUI.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  139. OpenGUI.BackgroundTransparency = 0.15000000596046
  140. OpenGUI.BorderColor3 = Color3.new(0.666667, 0, 0)
  141. OpenGUI.BorderSizePixel = 6
  142. OpenGUI.Position = UDim2.new(0.0096649481, 0, 0.599508584, 0)
  143. OpenGUI.Size = UDim2.new(0, 100, 0, 34)
  144.  
  145. open.Name = "open"
  146. open.Parent = OpenGUI
  147. open.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  148. open.BackgroundTransparency = 1
  149. open.BorderSizePixel = 0
  150. open.Size = UDim2.new(0, 100, 0, 34)
  151. open.Font = Enum.Font.Arcade
  152. open.Text = "OPEN"
  153. open.TextColor3 = Color3.new(1, 1, 1)
  154. open.TextScaled = true
  155. open.TextSize = 14
  156. open.TextWrapped = true
  157. open.MouseButton1Click:connect(function()
  158.     MainGUI.Visible = true
  159.     OpenGUI.Visible = false
  160. end)
  161.  
  162. -- Things Idk
  163.  
  164. game:GetService("StarterGui"):SetCore("SendNotification", {
  165. Title = "Info:";
  166. Text = "GUI Made By: 🔥Cool_Boy🔥#7976"
  167. })
  168.  
  169. game:GetService("StarterGui"):SetCore("SendNotification", {
  170. Title = "Info:";
  171. Text = "Script Made By: 🔥Cool_Boy🔥#7976"
  172. })
  173.  
  174. Instance.new("HopperBin", game.Players.LocalPlayer.Backpack).BinType = 2
  175. Instance.new("HopperBin", game.Players.LocalPlayer.Backpack).BinType = 3
  176. Instance.new("HopperBin", game.Players.LocalPlayer.Backpack).BinType = 4
  177.  
  178.  
  179. local InfiniteJumpEnabled = true
  180. game:GetService("UserInputService").JumpRequest:connect(function()
  181.     if InfiniteJumpEnabled then
  182.         game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  183.     end
  184. end)
  185. local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
  186. InfiniteJump.Position = UDim2.new(0,10,0,130)
  187. InfiniteJump.Size = UDim2.new(0,150,0,30)
  188. InfiniteJump.MouseButton1Click:connect(function()
  189.     local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
  190.     local new = state == "Off" and "On" or state == "On" and "Off"
  191.     InfiniteJumpEnabled = new == "On"
  192.     InfiniteJump.Text = "Infinite Jump: " .. new
  193. end)
Add Comment
Please, Sign In to add comment