Advertisement
FuZe_Bleed

GODLY

Sep 23rd, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.08 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Top = Instance.new("Frame")
  5. local Back = Instance.new("Frame")
  6. local TextButton1 = Instance.new("TextButton")
  7. local TextButton2 = Instance.new("TextButton")
  8. local TextButton3 = Instance.new("TextButton")
  9. local TextButton4 = Instance.new("TextButton")
  10. local Label = Instance.new("TextLabel")
  11.  
  12. -- Properties
  13.  
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. Top.Name = "Top"
  17. Top.Parent = ScreenGui
  18. Top.Active = true
  19. Top.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  20. Top.Draggable = true
  21. Top.Position = UDim2.new(0.771902144, 0, 0.508005798, 0)
  22. Top.Selectable = true
  23. Top.Size = UDim2.new(0, 430, 0, 31)
  24.  
  25. Back.Name = "Back"
  26. Back.Parent = Top
  27. Back.BackgroundColor3 = Color3.new(0, 0.5, 0.7)
  28. Back.BackgroundTransparency = 0.20000000298023
  29. Back.Position = UDim2.new(0, 0, 1, 0)
  30. Back.Size = UDim2.new(0, 430, 0, 130)
  31.  
  32. TextButton1.Name = "TextButton1"
  33. TextButton1.Parent = Back
  34. TextButton1.BackgroundColor3 = Color3.new(0, 0.7, 0.9)
  35. TextButton1.Position = UDim2.new(0.02, 0, 0.05, 0)
  36. TextButton1.Size = UDim2.new(0, 200, 0, 50)
  37. TextButton1.Font = Enum.Font.SourceSans
  38. TextButton1.Text = "Speed"
  39. TextButton1.TextColor3 = Color3.new(1, 1, 1)
  40. TextButton1.TextSize = 20
  41. TextButton1.MouseButton1Click:connect(function()
  42. local CratesToBuy = 1000 -- How many you want to buy
  43. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  44. end)
  45.  
  46. TextButton2.Name = "TextButton2"
  47. TextButton2.Parent = Back
  48. TextButton2.BackgroundColor3 = Color3.new(0, 0.7, 0.9)
  49. TextButton2.Position = UDim2.new(0.515, 0, 0.05, 0)
  50. TextButton2.Size = UDim2.new(0, 200, 0, 50)
  51. TextButton2.Font = Enum.Font.SourceSans
  52. TextButton2.Text = "Fly"
  53. TextButton2.TextColor3 = Color3.new(1, 1, 1)
  54. TextButton2.TextSize = 20
  55. TextButton2.MouseButton1Click:connect(function()
  56. repeat wait()
  57. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  58. local mouse = game.Players.LocalPlayer:GetMouse()
  59. repeat wait() until mouse
  60. local plr = game.Players.LocalPlayer
  61. local torso = plr.Character.Torso
  62. local flying = true
  63. local deb = true
  64. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  65. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  66. local maxspeed = 50
  67. local speed = 0
  68.  
  69. function Fly()
  70. local bg = Instance.new("BodyGyro", torso)
  71. bg.P = 9e4
  72. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  73. bg.cframe = torso.CFrame
  74. local bv = Instance.new("BodyVelocity", torso)
  75. bv.velocity = Vector3.new(0,0.1,0)
  76. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  77. repeat wait()
  78. plr.Character.Humanoid.PlatformStand = true
  79. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  80. speed = speed+.5+(speed/maxspeed)
  81. if speed > maxspeed then
  82. speed = maxspeed
  83. end
  84. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  85. speed = speed-1
  86. if speed < 0 then
  87. speed = 0
  88. end
  89. end
  90. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  91. 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
  92. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  93. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  94. 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
  95. else
  96. bv.velocity = Vector3.new(0,0.1,0)
  97. end
  98. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  99. until not flying
  100. ctrl = {f = 0, b = 0, l = 0, r = 0}
  101. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  102. speed = 0
  103. bg:Destroy()
  104. bv:Destroy()
  105. plr.Character.Humanoid.PlatformStand = false
  106. end
  107. mouse.KeyDown:connect(function(key)
  108. if key:lower() == "e" then
  109. if flying then flying = false
  110. else
  111. flying = true
  112. Fly()
  113. end
  114. elseif key:lower() == "w" then
  115. ctrl.f = 1
  116. elseif key:lower() == "s" then
  117. ctrl.b = -1
  118. elseif key:lower() == "a" then
  119. ctrl.l = -1
  120. elseif key:lower() == "d" then
  121. ctrl.r = 1
  122. end
  123. end)
  124. mouse.KeyUp:connect(function(key)
  125. if key:lower() == "w" then
  126. ctrl.f = 0
  127. elseif key:lower() == "s" then
  128. ctrl.b = 0
  129. elseif key:lower() == "a" then
  130. ctrl.l = 0
  131. elseif key:lower() == "d" then
  132. ctrl.r = 0
  133. end
  134. end)
  135. Fly()
  136. end)
  137.  
  138. TextButton3.Name = "TextButton3"
  139. TextButton3.Parent = Back
  140. TextButton3.BackgroundColor3 = Color3.new(0, 0.7, 0.9)
  141. TextButton3.Position = UDim2.new(0.02, 0, 0.55, 0)
  142. TextButton3.Size = UDim2.new(0, 200, 0, 50)
  143. TextButton3.Font = Enum.Font.SourceSans
  144. TextButton3.Text = "NOCLIP"
  145. TextButton3.TextColor3 = Color3.new(1, 1, 1)
  146. TextButton3.TextSize = 20
  147. TextButton3.MouseButton1Click:connect(function()
  148. local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = false elseif v.ClassName == "Model" then v.Head.CanCollide = false end end) end end game:service("RunService").Stepped:wait() end
  149. end)
  150.  
  151. TextButton4.Name = "TextButton4"
  152. TextButton4.Parent = Back
  153. TextButton4.BackgroundColor3 = Color3.new(0, 0.7, 0.9)
  154. TextButton4.Position = UDim2.new(0.515, 0, 0.55, 0)
  155. TextButton4.Size = UDim2.new(0, 200, 0, 50)
  156. TextButton4.Font = Enum.Font.SourceSans
  157. TextButton4.Text = "AUTO KILL"
  158. TextButton4.TextColor3 = Color3.new(1, 1, 1)
  159. TextButton4.TextSize = 20
  160. TextButton4.MouseButton1Click:connect(function()
  161. local working = true
  162. game:GetService('Players').LocalPlayer:GetMouse().KeyDown:connect(function(key)
  163. if key == string.lower(hotkey) then
  164. working = not working
  165. end
  166. end)
  167.  
  168. while wait(0.2) do
  169. if working == true then
  170. pcall(function()
  171. local ohthatscomplicated = {
  172. ["Name"] = game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").Name,
  173. ["HumanoidTables"] = {
  174. }
  175. }
  176. for i,v in pairs(workspace[".ZombieStorage"]:GetChildren()) do
  177. local hm = {
  178. ["HeadHits"] = math.huge,
  179. ["THumanoid"] = v:FindFirstChildOfClass('Humanoid'),
  180. ["BodyHits"] = 0
  181. }
  182. table.insert(ohthatscomplicated["HumanoidTables"],hm)
  183. end
  184. pcall(function()
  185. game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunControllerAlt.RemoteFunction:InvokeServer(ohthatscomplicated)
  186. end)
  187. game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunController.RemoteFunction:InvokeServer(ohthatscomplicated)
  188. end)
  189. end
  190. end
  191. end)
  192.  
  193. Label.Name = "Label"
  194. Label.Parent = Top
  195. Label.BackgroundColor3 = Color3.new(1, 1, 1)
  196. Label.BackgroundTransparency = 1
  197. Label.BorderSizePixel = 0
  198. Label.Position = UDim2.new(0.23, 0, 0, 0)
  199. Label.Size = UDim2.new(0, 242, 0, 31)
  200. Label.Font = Enum.Font.SourceSans
  201. Label.Text = "MADE BY FUZE_BLEED"
  202. Label.TextColor3 = Color3.new(1, 1, 1)
  203. Label.TextScaled = true
  204. Label.TextSize = 14
  205. Label.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement