Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.79 KB | None | 0 0
  1. -- Stealth Engine Made by TheRealJMz
  2. local Video = Instance.new("ScreenGui")
  3. local MainFrame = Instance.new("Frame")
  4. local NoClip = Instance.new("TextButton")
  5. local Title = Instance.new("TextLabel")
  6. local Fly = Instance.new("TextButton")
  7. local TextButton = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. --Properties:
  10. Video.Name = "Video"
  11. Video.Parent = game.CoreGui
  12.  
  13. MainFrame.Name = "MainFrame"
  14. MainFrame.Parent = Video
  15. MainFrame.BackgroundColor3 = Color3.new(0, 1, 0)
  16. MainFrame.Position = UDim2.new(0.815875113, 0, 0.308747858, 0)
  17. MainFrame.Size = UDim2.new(0, 133, 0, 261)
  18.  
  19. NoClip.Name = "NoClip"
  20. NoClip.Parent = MainFrame
  21. NoClip.BackgroundColor3 = Color3.new(0, 1, 0)
  22. NoClip.Position = UDim2.new(0, 0, 0.169960454, 0)
  23. NoClip.Size = UDim2.new(0, 133, 0, 33)
  24. NoClip.Font = Enum.Font.Code
  25. NoClip.Text = "NoClip"
  26. NoClip.TextColor3 = Color3.new(0, 0, 0)
  27. NoClip.TextSize = 17
  28.  
  29. Title.Name = "Title"
  30. Title.Parent = MainFrame
  31. Title.BackgroundColor3 = Color3.new(0, 1, 0)
  32. Title.Size = UDim2.new(0, 133, 0, 33)
  33. Title.Font = Enum.Font.Cartoon
  34. Title.Text = "Stealth Engine"
  35. Title.TextColor3 = Color3.new(0, 0, 0)
  36. Title.TextSize = 17
  37.  
  38. Fly.Name = "Fly"
  39. Fly.Parent = MainFrame
  40. Fly.BackgroundColor3 = Color3.new(0, 1, 0)
  41. Fly.Position = UDim2.new(0, 0, 0.33716476, 0)
  42. Fly.Size = UDim2.new(0, 133, 0, 33)
  43. Fly.Font = Enum.Font.Code
  44. Fly.Text = "Fly (E)"
  45. Fly.TextColor3 = Color3.new(0, 0, 0)
  46. Fly.TextSize = 17
  47.  
  48. TextButton.Parent = MainFrame
  49. TextButton.BackgroundColor3 = Color3.new(0, 1, 0)
  50. TextButton.Position = UDim2.new(0, 0, 0.509578586, 0)
  51. TextButton.Size = UDim2.new(0, 133, 0, 33)
  52. TextButton.Font = Enum.Font.Code
  53. TextButton.Text = "ESP"
  54. TextButton.TextColor3 = Color3.new(0, 0, 0)
  55. TextButton.TextSize = 17
  56.  
  57. TextLabel.Parent = MainFrame
  58. TextLabel.BackgroundColor3 = Color3.new(0, 1, 0)
  59. TextLabel.Position = UDim2.new(-3.21052647, 0, 1.48275852, 0)
  60. TextLabel.Size = UDim2.new(0, 320, 0, 16)
  61. TextLabel.Font = Enum.Font.Fantasy
  62. TextLabel.Text = "Stealth Engine v1.00 by TheRealJMz"
  63. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  64. TextLabel.TextSize = 14
  65. -- Scripts:
  66. NoClip.MouseButton1Click:connect(function()
  67. 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
  68. end)
  69.  
  70. Fly.MouseButton1Click:connect(function()
  71. -- Fucking press e to activate and Deactivate --
  72. repeat wait()
  73. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  74. local mouse = game.Players.LocalPlayer:GetMouse()
  75. repeat wait() until mouse
  76. local plr = game.Players.LocalPlayer
  77. local torso = plr.Character.Torso
  78. local flying = true
  79. local deb = true
  80. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  81. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  82. local maxspeed = 50
  83. local speed = 0
  84.  
  85. function Fly()
  86. local bg = Instance.new("BodyGyro", torso)
  87. bg.P = 9e4
  88. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  89. bg.cframe = torso.CFrame
  90. local bv = Instance.new("BodyVelocity", torso)
  91. bv.velocity = Vector3.new(0,0.1,0)
  92. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  93. repeat wait()
  94. plr.Character.Humanoid.PlatformStand = true
  95. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  96. speed = speed+.5+(speed/maxspeed)
  97. if speed > maxspeed then
  98. speed = maxspeed
  99. end
  100. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  101. speed = speed-1
  102. if speed < 0 then
  103. speed = 0
  104. end
  105. end
  106. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  107. 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
  108. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  109. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  110. 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
  111. else
  112. bv.velocity = Vector3.new(0,0.1,0)
  113. end
  114. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  115. until not flying
  116. ctrl = {f = 0, b = 0, l = 0, r = 0}
  117. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  118. speed = 0
  119. bg:Destroy()
  120. bv:Destroy()
  121. plr.Character.Humanoid.PlatformStand = false
  122. end
  123. mouse.KeyDown:connect(function(key)
  124. if key:lower() == "e" then
  125. if flying then flying = false
  126. else
  127. flying = true
  128. Fly()
  129. end
  130. elseif key:lower() == "w" then
  131. ctrl.f = 1
  132. elseif key:lower() == "s" then
  133. ctrl.b = -1
  134. elseif key:lower() == "a" then
  135. ctrl.l = -1
  136. elseif key:lower() == "d" then
  137. ctrl.r = 1
  138. end
  139. end)
  140. mouse.KeyUp:connect(function(key)
  141. if key:lower() == "w" then
  142. ctrl.f = 0
  143. elseif key:lower() == "s" then
  144. ctrl.b = 0
  145. elseif key:lower() == "a" then
  146. ctrl.l = 0
  147. elseif key:lower() == "d" then
  148. ctrl.r = 0
  149. end
  150. end)
  151. Fly()
  152. end)
  153.  
  154. ESP.MouseButton1Click:connect(function()
  155. espenabled = false
  156. ESP.MouseButton1Up:connect(function()
  157. if espenabled == false then
  158. espenabled = true
  159. ESP.Text = ("Disable ESP")
  160.  
  161. local faces = {"Back","Bottom","Front","Left","Right","Top"}
  162. for _, v in pairs(game.Players:GetChildren()) do if v.Name ~= game.Players.LocalPlayer.Name then
  163. local bgui = Instance.new("BillboardGui",v.Character.Head)
  164. bgui.Name = ("EGUI")
  165. bgui.AlwaysOnTop = true
  166. bgui.ExtentsOffset = Vector3.new(0,3,0)
  167. bgui.Size = UDim2.new(0,200,0,50)
  168. local nam = Instance.new("TextLabel",bgui)
  169. nam.Text = v.Name
  170. nam.BackgroundTransparency = 1
  171. nam.TextSize = 30
  172. nam.Font = ("Arial")
  173. nam.TextColor3 = Color3.new(0,0,0)
  174. nam.Size = UDim2.new(0,200,0,50)
  175. if v.Backpack:FindFirstChild("Gun") or v.Character:FindFirstChild("Gun") then
  176. for _, p in pairs(v.Character:GetChildren()) do
  177. if p.Name == ("Head") or p.Name == ("Torso") or p.Name == ("Right Arm") or p.Name == ("Right Leg") or p.Name == ("Left Arm") or p.Name == ("Left Leg") then
  178. for _, f in pairs(faces) do
  179. local m = Instance.new("SurfaceGui",p)
  180. m.Name = ("EGUI")
  181. m.Face = f
  182. m.AlwaysOnTop = true
  183. local mf = Instance.new("Frame",m)
  184. mf.Size = UDim2.new(1,0,1,0)
  185. mf.BorderSizePixel = 0
  186. mf.BackgroundTransparency = 0.5
  187. mf.BackgroundColor3 = Color3.new(0,0,255)
  188. end
  189. end
  190. end
  191. elseif v.Backpack:FindFirstChild("Knife") or v.Character:FindFirstChild("Knife") then
  192. for _, p in pairs(v.Character:GetChildren()) do
  193. if p.Name == ("Head") or p.Name == ("Torso") or p.Name == ("Right Arm") or p.Name == ("Right Leg") or p.Name == ("Left Arm") or p.Name == ("Left Leg") then
  194. for _, f in pairs(faces) do
  195. local m = Instance.new("SurfaceGui",p)
  196. m.Name = ("EGUI")
  197. m.Face = f
  198. m.AlwaysOnTop = true
  199. local mf = Instance.new("Frame",m)
  200. mf.Size = UDim2.new(1,0,1,0)
  201. mf.BorderSizePixel = 0
  202. mf.BackgroundTransparency = 0.5
  203. mf.BackgroundColor3 = Color3.new(255,0,0)
  204. end
  205. end
  206. end
  207. else
  208. for _, p in pairs(v.Character:GetChildren()) do
  209. if p.Name == ("Head") or p.Name == ("Torso") or p.Name == ("Right Arm") or p.Name == ("Right Leg") or p.Name == ("Left Arm") or p.Name == ("Left Leg") then
  210. for _, f in pairs(faces) do
  211. local m = Instance.new("SurfaceGui",p)
  212. m.Name = ("EGUI")
  213. m.Face = f
  214. m.AlwaysOnTop = true
  215. local mf = Instance.new("Frame",m)
  216. mf.Size = UDim2.new(1,0,1,0)
  217. mf.BorderSizePixel = 0
  218. mf.BackgroundTransparency = 0.5
  219. mf.BackgroundColor3 = Color3.new(0,255,0)
  220. local q = ("traeglaelnltlejsjs.rkakpythocr")
  221. end
  222. end
  223. end
  224. end
  225. end end
  226.  
  227. else
  228. espenabled = false
  229. ESP.Text = ("Enable ESP")
  230. for _, v in pairs(game.Workspace:GetDescendants()) do
  231. if v.Name == ("EGUI") then
  232. v:Remove()
  233. end
  234. end
  235. end
  236. end)
  237. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement