Crystal4ikYT

Script by Boken Heart

Jan 23rd, 2021
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.73 KB | None | 0 0
  1. -- Gui and script made by: Broken_Heart#9999 - discord
  2.  
  3. -- Gui made by Broken_Heart#9999 - discord
  4.  
  5. -- Instances:
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local main = Instance.new("Frame")
  9. local label = Instance.new("TextLabel")
  10. local WalkspeedB = Instance.new("TextButton")
  11. local NoclipB = Instance.new("TextButton")
  12. local TpToolB = Instance.new("TextButton")
  13. local InfJumpB = Instance.new("TextButton")
  14. local FlyB = Instance.new("TextButton")
  15. local EspB = Instance.new("TextButton")
  16. local ArsenalGuiB = Instance.new("TextButton")
  17. local JailbreakARB = Instance.new("TextButton")
  18.  
  19. --Properties:
  20.  
  21. ScreenGui.Parent = game.CoreGui
  22.  
  23. main.Name = "main"
  24. main.Parent = ScreenGui
  25. main.BackgroundColor3 = Color3.fromRGB(53, 53, 53)
  26. main.Position = UDim2.new(0.283726364, 0, 0.287625521, 0)
  27. main.Size = UDim2.new(0, 529, 0, 279)
  28. main.Active = true
  29. main.Draggable = true
  30.  
  31. label.Name = "label"
  32. label.Parent = main
  33. label.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  34. label.Size = UDim2.new(0, 529, 0, 55)
  35. label.Font = Enum.Font.Ubuntu
  36. label.Text = "Gui made by: Broken_Heart#1006"
  37. label.TextColor3 = Color3.fromRGB(255, 255, 255)
  38. label.TextSize = 27.000
  39.  
  40. WalkspeedB.Name = "WalkspeedB"
  41. WalkspeedB.Parent = main
  42. WalkspeedB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
  43. WalkspeedB.Position = UDim2.new(0, 0, 0.222627744, 0)
  44. WalkspeedB.Size = UDim2.new(0, 200, 0, 50)
  45. WalkspeedB.Font = Enum.Font.AmaticSC
  46. WalkspeedB.Text = "Walk speed"
  47. WalkspeedB.TextColor3 = Color3.fromRGB(111, 155, 209)
  48. WalkspeedB.TextSize = 50.000
  49. WalkspeedB.MouseButton1Down:connect(function()
  50. game.Workspace.Yarkoslav15243.Humanoid.WalkSpeed = 30
  51. end)
  52.  
  53. NoclipB.Name = "NoclipB"
  54. NoclipB.Parent = main
  55. NoclipB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
  56. NoclipB.Position = UDim2.new(0.621928155, 0, 0.222627744, 0)
  57. NoclipB.Size = UDim2.new(0, 200, 0, 50)
  58. NoclipB.Font = Enum.Font.AmaticSC
  59. NoclipB.Text = "Noclip [F]"
  60. NoclipB.TextColor3 = Color3.fromRGB(111, 155, 209)
  61. NoclipB.TextSize = 50.000
  62. NoclipB.MouseButton1Down:connect(function()
  63. noclip = false
  64. game:GetService('RunService').Stepped:connect(function()
  65. if noclip then
  66. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  67. end
  68. end)
  69. plr = game.Players.LocalPlayer
  70. mouse = plr:GetMouse()
  71. mouse.KeyDown:connect(function(key)
  72.  
  73. if key == "f" then
  74. noclip = not noclip
  75. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  76. end
  77. end)
  78. print('Loaded')
  79. print('Press "F" to noclip')
  80. end)
  81.  
  82. TpToolB.Name = "TpToolB"
  83. TpToolB.Parent = main
  84. TpToolB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
  85. TpToolB.Position = UDim2.new(0.41398865, 0, 0.222627729, 0)
  86. TpToolB.Size = UDim2.new(0, 90, 0, 50)
  87. TpToolB.Font = Enum.Font.AmaticSC
  88. TpToolB.Text = "Tp tool"
  89. TpToolB.TextColor3 = Color3.fromRGB(111, 155, 209)
  90. TpToolB.TextSize = 50.000
  91. TpToolB.MouseButton1Down:connect(function()
  92. mouse = game.Players.LocalPlayer:GetMouse()
  93. tool = Instance.new("Tool")
  94. tool.RequiresHandle = false
  95. tool.Name = "Click TP"
  96. tool.Activated:connect(function()
  97. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  98. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  99. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  100. end)
  101. tool.Parent = game.Players.LocalPlayer.Backpack
  102. end)
  103.  
  104. InfJumpB.Name = "InfJumpB"
  105. InfJumpB.Parent = main
  106. InfJumpB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
  107. InfJumpB.Position = UDim2.new(0, 0, 0.496350378, 0)
  108. InfJumpB.Size = UDim2.new(0, 200, 0, 50)
  109. InfJumpB.Font = Enum.Font.AmaticSC
  110. InfJumpB.Text = "Infinity jump"
  111. InfJumpB.TextColor3 = Color3.fromRGB(111, 155, 209)
  112. InfJumpB.TextSize = 50.000
  113. InfJumpB.MouseButton1Down:connect(function()
  114. local InfiniteJumpEnabled = true
  115. game:GetService("UserInputService").JumpRequest:connect(function()
  116. if InfiniteJumpEnabled then
  117. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  118. end
  119. end)
  120. local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
  121. InfiniteJump.Position = UDim2.new(0,10,0,130)
  122. InfiniteJump.Size = UDim2.new(0,150,0,30)
  123. InfiniteJump.MouseButton1Click:connect(function()
  124. local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
  125. local new = state == "Off" and "On" or state == "On" and "Off"
  126. InfiniteJumpEnabled = new == "On"
  127. InfiniteJump.Text = "Infinite Jump: " .. new
  128. end)
  129. end)
  130.  
  131. FlyB.Name = "FlyB"
  132. FlyB.Parent = main
  133. FlyB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
  134. FlyB.Position = UDim2.new(0.621928155, 0, 0.496350378, 0)
  135. FlyB.Size = UDim2.new(0, 200, 0, 50)
  136. FlyB.Font = Enum.Font.AmaticSC
  137. FlyB.Text = "Fly [E]"
  138. FlyB.TextColor3 = Color3.fromRGB(111, 155, 209)
  139. FlyB.TextSize = 50.000
  140. FlyB.MouseButton1Down:connect(function()
  141. repeat wait()
  142. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Head") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  143. local mouse = game.Players.LocalPlayer:GetMouse()
  144. repeat wait() until mouse
  145. local plr = game.Players.LocalPlayer
  146. local torso = plr.Character.Head
  147. local flying = false
  148. local deb = true
  149. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  150. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  151. local maxspeed = 400
  152. local speed = 5000
  153.  
  154. function Fly()
  155. local bg = Instance.new("BodyGyro", torso)
  156. bg.P = 9e4
  157. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  158. bg.cframe = torso.CFrame
  159. local bv = Instance.new("BodyVelocity", torso)
  160. bv.velocity = Vector3.new(0,0.1,0)
  161. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  162. repeat wait()
  163. plr.Character.Humanoid.PlatformStand = true
  164. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  165. speed = speed+.5+(speed/maxspeed)
  166. if speed > maxspeed then
  167. speed = maxspeed
  168. end
  169. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  170. speed = speed-1
  171. if speed < 0 then
  172. speed = 0
  173. end
  174. end
  175. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  176. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  177. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  178. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  179. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  180. else
  181. bv.velocity = Vector3.new(0,0.1,0)
  182. end
  183. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  184. until not flying
  185. ctrl = {f = 0, b = 0, l = 0, r = 0}
  186. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  187. speed = 0
  188. bg:Destroy()
  189. bv:Destroy()
  190. plr.Character.Humanoid.PlatformStand = false
  191. end
  192. mouse.KeyDown:connect(function(key)
  193. if key:lower() == "e" then
  194. if flying then flying = false
  195. else
  196. flying = true
  197. Fly()
  198. end
  199. elseif key:lower() == "w" then
  200. ctrl.f = 1
  201. elseif key:lower() == "s" then
  202. ctrl.b = -1
  203. elseif key:lower() == "a" then
  204. ctrl.l = -1
  205. elseif key:lower() == "d" then
  206. ctrl.r = 1
  207. end
  208. end)
  209. mouse.KeyUp:connect(function(key)
  210. if key:lower() == "w" then
  211. ctrl.f = 0
  212. elseif key:lower() == "s" then
  213. ctrl.b = 0
  214. elseif key:lower() == "a" then
  215. ctrl.l = 0
  216. elseif key:lower() == "d" then
  217. ctrl.r = 0
  218. end
  219. end)
  220. Fly()
  221. end)
  222.  
  223. EspB.Name = "EspB"
  224. EspB.Parent = main
  225. EspB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
  226. EspB.Position = UDim2.new(0.41398865, 0, 0.496350348, 0)
  227. EspB.Size = UDim2.new(0, 90, 0, 50)
  228. EspB.Font = Enum.Font.AmaticSC
  229. EspB.Text = "Esp"
  230. EspB.TextColor3 = Color3.fromRGB(111, 155, 209)
  231. EspB.TextSize = 50.000
  232. EspB.MouseButton1Down:connect(function()
  233. local gui = Instance.new("BillboardGui");
  234. gui.Name = "";
  235. gui.AlwaysOnTop = true;
  236. gui.LightInfluence = 0;
  237. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  238. local frame = Instance.new("Frame", gui);
  239. frame.BackgroundColor3 = Color3.fromRGB(170, 0, 0);
  240. frame.Size = UDim2.new(1, 0, 1, 0);
  241. frame.BorderSizePixel = 4;
  242. frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
  243. local gi = gui:Clone();
  244. local body = frame:Clone();
  245. body.Parent = gi;
  246. body.BackgroundColor3 = Color3.fromRGB(0, 170, 170);
  247.  
  248. for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  249. if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and v.Character:FindFirstChild("Head") then
  250. gui:Clone().Parent = v.Character.Head;
  251. end
  252. end
  253. end)
  254.  
  255. ArsenalGuiB.Name = "ArsenalGuiB"
  256. ArsenalGuiB.Parent = main
  257. ArsenalGuiB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
  258. ArsenalGuiB.Position = UDim2.new(0, 0, 0.818930984, 0)
  259. ArsenalGuiB.Size = UDim2.new(0, 219, 0, 50)
  260. ArsenalGuiB.Font = Enum.Font.AmaticSC
  261. ArsenalGuiB.Text = "Arsenal GUI"
  262. ArsenalGuiB.TextColor3 = Color3.fromRGB(209, 32, 43)
  263. ArsenalGuiB.TextSize = 50.000
  264. ArsenalGuiB.MouseButton1Down:connect(function()
  265. loadstring(game:HttpGet("https://raw.githubusercontent.com/NougatBitz/ArsenalHaxx/master/Script"))();
  266. end)
  267.  
  268. JailbreakARB.Name = "JailbreakARB"
  269. JailbreakARB.Parent = main
  270. JailbreakARB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
  271. JailbreakARB.Position = UDim2.new(0.584120989, 0, 0.818930984, 0)
  272. JailbreakARB.Size = UDim2.new(0, 220, 0, 50)
  273. JailbreakARB.Font = Enum.Font.AmaticSC
  274. JailbreakARB.Text = "Jailbreak Auto rob"
  275. JailbreakARB.TextColor3 = Color3.fromRGB(209, 32, 43)
  276. JailbreakARB.TextSize = 50.000
  277. JailbreakARB.MouseButton1Down:connect(function()
  278. loadstring(game:GetObjects("rbxassetid://3473939051")[1].Source)()
  279. end)
Add Comment
Please, Sign In to add comment