OFAS32_IL_IL

hack roblox

Mar 5th, 2022 (edited)
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.96 KB | None | 0 0
  1. HACK Roblox
  2. --
  3. -- Gui to Lua
  4. -- Version: 3.2
  5.  
  6. -- Instances:
  7.  
  8. local ScreenGui = Instance.new("ScreenGui")
  9. local Frame = Instance.new("Frame")
  10. local UICorner = Instance.new("UICorner")
  11. local TextLabel = Instance.new("TextLabel")
  12. local TP2 = Instance.new("TextButton")
  13. local UICorner_2 = Instance.new("UICorner")
  14. local TP3 = Instance.new("TextButton")
  15. local UICorner_3 = Instance.new("UICorner")
  16. local TP1 = Instance.new("TextButton")
  17. local UICorner_4 = Instance.new("UICorner")
  18. local TP4 = Instance.new("TextButton")
  19. local UICorner_5 = Instance.new("UICorner")
  20. local TP5 = Instance.new("TextButton")
  21. local UICorner_6 = Instance.new("UICorner")
  22.  
  23. --Properties:
  24.  
  25. ScreenGui.Parent = game.CoreGui
  26. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  27.  
  28. Frame.Parent = ScreenGui
  29. Frame.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  30. Frame.Position = UDim2.new(0.821544051, 0, 0.371607572, 0)
  31. Frame.Size = UDim2.new(0, 177, 0, 291)
  32.  
  33. UICorner.Parent = Frame
  34.  
  35. TextLabel.Parent = Frame
  36. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  37. TextLabel.BackgroundTransparency = 1.000
  38. TextLabel.BorderColor3 = Color3.fromRGB(27, 42, 53)
  39. TextLabel.Position = UDim2.new(0.0790960416, 0, 0, 0)
  40. TextLabel.Size = UDim2.new(0, 149, 0, 14)
  41. TextLabel.Font = Enum.Font.JosefinSans
  42. TextLabel.Text = "@guys_Buffalo"
  43. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  44. TextLabel.TextSize = 14.000
  45.  
  46. TP2.Name = "TP2"
  47. TP2.Parent = Frame
  48. TP2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  49. TP2.Position = UDim2.new(0.124293782, 0, 0.260419488, 0)
  50. TP2.Size = UDim2.new(0, 141, 0, 23)
  51. TP2.Font = Enum.Font.SourceSans
  52. TP2.Text = "speed"
  53. TP2.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. TP2.TextSize = 14.000
  55. TP2.MouseButton1Down:connect(function()
  56. speed = 100
  57.  
  58. function onPlayerRespawned(character)
  59. wait(1)
  60. local player = game.Players:GetPlayerFromCharacter(character)
  61. local human = character:findFirstChild("Humanoid")
  62. if player ~= nil and human ~= nil then
  63. human.WalkSpeed = speed
  64. end
  65. end
  66.  
  67. game.Workspace.ChildAdded:connect(onPlayerRespawned)
  68. end)
  69.  
  70. UICorner_2.Parent = TP2
  71.  
  72. TP3.Name = "TP3"
  73. TP3.Parent = Frame
  74. TP3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  75. TP3.Position = UDim2.new(0.124293782, 0, 0.426771343, 0)
  76. TP3.Size = UDim2.new(0, 141, 0, 23)
  77. TP3.Font = Enum.Font.SourceSans
  78. TP3.Text = " jump"
  79. TP3.TextColor3 = Color3.fromRGB(0, 0, 0)
  80. TP3.TextSize = 14.000
  81. TP3.MouseButton1Down:connect(function()
  82. local newJumpPower = 100
  83.  
  84. game.Players.PlayerAdded:Connect(function(player)
  85. player.CharacterAdded:Connect(function(character)
  86. character:WaitForChild("Humanoid").JumpPower = newJumpPower
  87. end)
  88. end)
  89.  
  90. end)
  91.  
  92. UICorner_3.Parent = TP3
  93.  
  94. TP1.Name = "TP1"
  95. TP1.Parent = Frame
  96. TP1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  97. TP1.Position = UDim2.new(0.124293782, 0, 0.0881567895, 0)
  98. TP1.Size = UDim2.new(0, 141, 0, 23)
  99. TP1.Font = Enum.Font.SourceSans
  100. TP1.Text = "FLY"
  101. TP1.TextColor3 = Color3.fromRGB(0, 0, 0)
  102. TP1.TextSize = 14.000
  103. TP1.MouseButton1Down:connect(function()
  104. script.Parent = game.StarterPack
  105. repeat wait() -- Real Credit TheDominusGramer_YT3
  106. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Head") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  107. local mouse = game.Players.LocalPlayer:GetMouse()
  108. repeat wait() until mouse
  109. local plr = game.Players.LocalPlayer
  110. local torso = plr.Character.Head
  111. local flying = false
  112. local deb = true
  113. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  114. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  115. local maxspeed = 400
  116. local speed = 5000
  117.  
  118. function Fly()
  119. local bg = Instance.new("BodyGyro", torso)
  120. bg.P = 9e4
  121. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  122. bg.cframe = torso.CFrame
  123. local bv = Instance.new("BodyVelocity", torso)
  124. bv.velocity = Vector3.new(0,0.1,0)
  125. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  126. repeat wait()
  127. plr.Character.Humanoid.PlatformStand = true
  128. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  129. speed = speed+.5+(speed/maxspeed)
  130. if speed > maxspeed then
  131. speed = maxspeed
  132. end
  133. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  134. speed = speed-1
  135. if speed < 0 then
  136. speed = 0
  137. end
  138. end
  139. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  140. 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
  141. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  142. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  143. 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
  144. else
  145. bv.velocity = Vector3.new(0,0.1,0)
  146. end
  147. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  148. until not flying
  149. ctrl = {f = 0, b = 0, l = 0, r = 0}
  150. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  151. speed = 0
  152. bg:Destroy()
  153. bv:Destroy()
  154. plr.Character.Humanoid.PlatformStand = false
  155. end
  156. mouse.KeyDown:connect(function(key)
  157. if key:lower() == "f" then
  158. if flying then flying = false
  159. else
  160. flying = true
  161. Fly()
  162. end
  163. elseif key:lower() == "w" then
  164. ctrl.f = 1
  165. elseif key:lower() == "s" then
  166. ctrl.b = -1
  167. elseif key:lower() == "a" then
  168. ctrl.l = -1
  169. elseif key:lower() == "d" then
  170. ctrl.r = 1
  171. end
  172. end)
  173. mouse.KeyUp:connect(function(key)
  174. if key:lower() == "w" then
  175. ctrl.f = 0
  176. elseif key:lower() == "s" then
  177. ctrl.b = 0
  178. elseif key:lower() == "a" then
  179. ctrl.l = 0
  180. elseif key:lower() == "d" then
  181. ctrl.r = 0
  182. end
  183. end)
  184. Fly()
  185. end)
  186.  
  187. UICorner_4.Parent = TP1
  188.  
  189. TP4.Name = "TP4"
  190. TP4.Parent = Frame
  191. TP4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  192. TP4.Position = UDim2.new(0.124293782, 0, 0.58828336, 0)
  193. TP4.Size = UDim2.new(0, 141, 0, 23)
  194. TP4.Font = Enum.Font.SourceSans
  195. TP4.Text = "Btools"
  196. TP4.TextColor3 = Color3.fromRGB(0, 0, 0)
  197. TP4.TextSize = 14.000
  198. TP4.MouseButton1Down:connect(function()
  199. loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/BTools.txt"))()
  200. end)
  201.  
  202. UICorner_5.Parent = TP4
  203.  
  204. TP5.Name = "TP5"
  205. TP5.Parent = Frame
  206. TP5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  207. TP5.Position = UDim2.new(0.0790960416, 0, 0.777286828, 0)
  208. TP5.Size = UDim2.new(0, 157, 0, 47)
  209. TP5.Font = Enum.Font.SourceSans
  210. TP5.Text = "Click Teleport"
  211. TP5.TextColor3 = Color3.fromRGB(0, 0, 0)
  212. TP5.TextSize = 31.000
  213. TP5.MouseButton1Down:connect(function()
  214. loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Click Teleport.txt"))()
  215. end)
  216.  
  217. UICorner_6.Parent = TP5
Add Comment
Please, Sign In to add comment