Advertisement
Expist

jailbreak gui by expist

Dec 8th, 2019
447
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.49 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Misc = Instance.new("Frame")
  8. local Credits = Instance.new("TextLabel")
  9. local Walkspeed = Instance.new("TextButton")
  10. local Noclip = Instance.new("TextButton")
  11. local Gravity = Instance.new("TextButton")
  12. local Btools = Instance.new("TextButton")
  13. local InfNitro = Instance.new("TextButton")
  14. local Teleports = Instance.new("Frame")
  15. local Credits_2 = Instance.new("TextLabel")
  16. local CrimBase1 = Instance.new("TextButton")
  17. local Jewerly = Instance.new("TextButton")
  18. local Prison = Instance.new("TextButton")
  19. local PoliceBase = Instance.new("TextButton")
  20. local Bank = Instance.new("TextButton")
  21. local Weapons = Instance.new("Frame")
  22. local Credits_3 = Instance.new("TextLabel")
  23. local AK47 = Instance.new("TextButton")
  24. local Shotgun = Instance.new("TextButton")
  25. local M4A4 = Instance.new("TextButton")
  26. local Keycard = Instance.new("TextButton")
  27. local Pistol = Instance.new("TextButton")
  28. local Extra = Instance.new("Frame")
  29. local Credits_4 = Instance.new("TextLabel")
  30. local ChatBypass = Instance.new("TextButton")
  31. local ClickTP = Instance.new("TextButton")
  32. local Fling = Instance.new("TextButton")
  33. local EatMe = Instance.new("TextButton")
  34. local Fly = Instance.new("TextButton")
  35.  
  36. --Properties:
  37.  
  38. ScreenGui.Parent = game.CoreGui
  39. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  40.  
  41. Misc.Name = "Misc"
  42. Misc.Parent = ScreenGui
  43. Misc.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  44. Misc.BackgroundTransparency = 0.30000001192093
  45. Misc.Position = UDim2.new(0.16274412, 0, 0.0316045396, 0)
  46. Misc.Size = UDim2.new(0, 94, 0, 212)
  47. Misc.Active = true
  48. Misc.Draggable = true
  49.  
  50. Credits.Name = "Credits"
  51. Credits.Parent = Misc
  52. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  53. Credits.BackgroundTransparency = 1
  54. Credits.Size = UDim2.new(0, 94, 0, 27)
  55. Credits.Font = Enum.Font.SourceSans
  56. Credits.Text = "Misc"
  57. Credits.TextColor3 = Color3.new(1, 1, 1)
  58. Credits.TextScaled = true
  59. Credits.TextSize = 14
  60. Credits.TextWrapped = true
  61.  
  62. Walkspeed.Name = "Walkspeed"
  63. Walkspeed.Parent = Misc
  64. Walkspeed.BackgroundColor3 = Color3.new(1, 1, 1)
  65. Walkspeed.BackgroundTransparency = 1
  66. Walkspeed.Position = UDim2.new(0, 0, 0.169811323, 0)
  67. Walkspeed.Size = UDim2.new(0, 94, 0, 21)
  68. Walkspeed.Font = Enum.Font.SourceSans
  69. Walkspeed.Text = "Walkspeed [X]"
  70. Walkspeed.TextColor3 = Color3.new(1, 1, 1)
  71. Walkspeed.TextSize = 14
  72. Walkspeed.MouseButton1Down:connect(function()
  73. local walkspeedplayer = game:GetService("Players").LocalPlayer
  74. local walkspeedmouse = walkspeedplayer:GetMouse()
  75.  
  76. local walkspeedenabled = false
  77.  
  78. function x_walkspeed(key)
  79. if (key == "x") then
  80. if walkspeedenabled == false then
  81. _G.WS = 200;
  82. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  83. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  84. Humanoid.WalkSpeed = _G.WS;
  85. end)
  86. Humanoid.WalkSpeed = _G.WS;
  87.  
  88. walkspeedenabled = true
  89. elseif walkspeedenabled == true then
  90. _G.WS = 20;
  91. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  92. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  93. Humanoid.WalkSpeed = _G.WS;
  94. end)
  95. Humanoid.WalkSpeed = _G.WS;
  96.  
  97. walkspeedenabled = false
  98. end
  99. end
  100. end
  101.  
  102. walkspeedmouse.KeyDown:connect(x_walkspeed)
  103.  
  104. end)
  105.  
  106. Noclip.Name = "Noclip"
  107. Noclip.Parent = Misc
  108. Noclip.BackgroundColor3 = Color3.new(1, 1, 1)
  109. Noclip.BackgroundTransparency = 1
  110. Noclip.Position = UDim2.new(0, 0, 0.320754707, 0)
  111. Noclip.Size = UDim2.new(0, 94, 0, 21)
  112. Noclip.Font = Enum.Font.SourceSans
  113. Noclip.Text = "Noclip [B]"
  114. Noclip.TextColor3 = Color3.new(1, 1, 1)
  115. Noclip.TextSize = 14
  116. Noclip.MouseButton1Down:connect(function()
  117. local noclipplayer = game:GetService("Players").LocalPlayer
  118. local noclipmouse = noclipplayer:GetMouse()
  119.  
  120. local donoclip = false
  121. local noclip = false
  122.  
  123. function b_noclip(key)
  124. if (key == "b") then
  125. if noclip == false then
  126. donoclip = true
  127.  
  128. noclip = true
  129. elseif noclip == true then
  130. donoclip = false
  131.  
  132. noclip = false
  133. end
  134. end
  135. end
  136.  
  137. noclipmouse.KeyDown:connect(b_noclip)
  138.  
  139. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  140. if obj ~= workspace.Terrain then
  141. if donoclip == true then
  142. obj.CanCollide = false
  143. else
  144. obj.CanCollide = true
  145. end
  146. end
  147. end)
  148. end)
  149.  
  150. Gravity.Name = "Gravity"
  151. Gravity.Parent = Misc
  152. Gravity.BackgroundColor3 = Color3.new(1, 1, 1)
  153. Gravity.BackgroundTransparency = 1
  154. Gravity.Position = UDim2.new(0, 0, 0.490566045, 0)
  155. Gravity.Size = UDim2.new(0, 94, 0, 21)
  156. Gravity.Font = Enum.Font.SourceSans
  157. Gravity.Text = "Gravity"
  158. Gravity.TextColor3 = Color3.new(1, 1, 1)
  159. Gravity.TextSize = 14
  160. Gravity.MouseButton1Down:connect(function()
  161. if Gravity == true then
  162. Gravity = false
  163. game.workspace.Gravity = 196.2
  164. else
  165. Gravity = true
  166. game.workspace.Gravity = 45
  167. end
  168. end)
  169.  
  170. Btools.Name = "Btools"
  171. Btools.Parent = Misc
  172. Btools.BackgroundColor3 = Color3.new(1, 1, 1)
  173. Btools.BackgroundTransparency = 1
  174. Btools.Position = UDim2.new(0, 0, 0.665094316, 0)
  175. Btools.Size = UDim2.new(0, 94, 0, 21)
  176. Btools.Font = Enum.Font.SourceSans
  177. Btools.Text = "BTools"
  178. Btools.TextColor3 = Color3.new(1, 1, 1)
  179. Btools.TextSize = 14
  180. Btools.MouseButton1Down:connect(function()
  181. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  182. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  183. if child.ClassName == "Part" then
  184. child.Locked = false
  185. end
  186. if child.ClassName == "MeshPart" then
  187. child.Locked = false
  188. end
  189. if child.ClassName == "UnionOperation" then
  190. child.Locked = false
  191. end
  192. if child.ClassName == "Model" then
  193. for index, chil in pairs(child:GetChildren()) do
  194. if chil.ClassName == "Part" then
  195. chil.Locked = false
  196. end
  197. if chil.ClassName == "MeshPart" then
  198. chil.Locked = false
  199. end
  200. if chil.ClassName == "UnionOperation" then
  201. chil.Locked = false
  202. end
  203. if chil.ClassName == "Model" then
  204. for index, childe in pairs(chil:GetChildren()) do
  205. if childe.ClassName == "Part" then
  206. childe.Locked = false
  207. end
  208. if childe.ClassName == "MeshPart" then
  209. childe.Locked = false
  210. end
  211. if childe.ClassName == "UnionOperation" then
  212. childe.Locked = false
  213. end
  214. if childe.ClassName == "Model" then
  215. for index, childeo in pairs(childe:GetChildren()) do
  216. if childeo.ClassName == "Part" then
  217. childeo.Locked = false
  218. end
  219. if childeo.ClassName == "MeshPart" then
  220. childeo.Locked = false
  221. end
  222. if childeo.ClassName == "UnionOperation" then
  223. childeo.Locked = false
  224. end
  225. if childeo.ClassName == "Model" then
  226. end
  227. end
  228. end
  229. end
  230. end
  231. end
  232. end
  233. end
  234. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  235. c.BinType = Enum.BinType.Hammer
  236. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  237. c.BinType = Enum.BinType.Clone
  238. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  239. c.BinType = Enum.BinType.Grab
  240. end)
  241.  
  242. InfNitro.Name = "Inf Nitro"
  243. InfNitro.Parent = Misc
  244. InfNitro.BackgroundColor3 = Color3.new(1, 1, 1)
  245. InfNitro.BackgroundTransparency = 1
  246. InfNitro.Position = UDim2.new(0, 0, 0.830188692, 0)
  247. InfNitro.Size = UDim2.new(0, 94, 0, 21)
  248. InfNitro.Font = Enum.Font.SourceSans
  249. InfNitro.Text = "Inf Nitro"
  250. InfNitro.TextColor3 = Color3.new(1, 1, 1)
  251. InfNitro.TextSize = 14
  252. InfNitro.MouseButton1Down:connect(function()
  253. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  254. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  255. end)
  256.  
  257. Teleports.Name = "Teleports"
  258. Teleports.Parent = ScreenGui
  259. Teleports.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  260. Teleports.BackgroundTransparency = 0.30000001192093
  261. Teleports.Position = UDim2.new(0.279419124, 0, 0.0316045396, 0)
  262. Teleports.Size = UDim2.new(0, 94, 0, 212)
  263. Teleports.Active = true
  264. Teleports.Draggable = true
  265.  
  266. Credits_2.Name = "Credits"
  267. Credits_2.Parent = Teleports
  268. Credits_2.BackgroundColor3 = Color3.new(1, 1, 1)
  269. Credits_2.BackgroundTransparency = 1
  270. Credits_2.Size = UDim2.new(0, 94, 0, 27)
  271. Credits_2.Font = Enum.Font.SourceSans
  272. Credits_2.Text = "Teleports"
  273. Credits_2.TextColor3 = Color3.new(1, 1, 1)
  274. Credits_2.TextScaled = true
  275. Credits_2.TextSize = 14
  276. Credits_2.TextWrapped = true
  277.  
  278. CrimBase1.Name = "Crim Base 1"
  279. CrimBase1.Parent = Teleports
  280. CrimBase1.BackgroundColor3 = Color3.new(1, 1, 1)
  281. CrimBase1.BackgroundTransparency = 1
  282. CrimBase1.Position = UDim2.new(0, 0, 0.169811323, 0)
  283. CrimBase1.Size = UDim2.new(0, 94, 0, 21)
  284. CrimBase1.Font = Enum.Font.SourceSans
  285. CrimBase1.Text = "Crim Base 1"
  286. CrimBase1.TextColor3 = Color3.new(1, 1, 1)
  287. CrimBase1.TextSize = 14
  288. CrimBase1.MouseButton1Down:connect(function()
  289. for i = 1,45 do
  290. wait(.08)
  291. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261)
  292. end
  293. end)
  294.  
  295. Jewerly.Name = "Jewerly"
  296. Jewerly.Parent = Teleports
  297. Jewerly.BackgroundColor3 = Color3.new(1, 1, 1)
  298. Jewerly.BackgroundTransparency = 1
  299. Jewerly.Position = UDim2.new(0, 0, 0.320754707, 0)
  300. Jewerly.Size = UDim2.new(0, 94, 0, 21)
  301. Jewerly.Font = Enum.Font.SourceSans
  302. Jewerly.Text = "Jewerly"
  303. Jewerly.TextColor3 = Color3.new(1, 1, 1)
  304. Jewerly.TextSize = 14
  305. Jewerly.MouseButton1Down:connect(function()
  306. for i = 1,45 do
  307. wait(.08)
  308. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175)
  309. end
  310. end)
  311.  
  312. Prison.Name = "Prison"
  313. Prison.Parent = Teleports
  314. Prison.BackgroundColor3 = Color3.new(1, 1, 1)
  315. Prison.BackgroundTransparency = 1
  316. Prison.Position = UDim2.new(0, 0, 0.490566045, 0)
  317. Prison.Size = UDim2.new(0, 94, 0, 21)
  318. Prison.Font = Enum.Font.SourceSans
  319. Prison.Text = "Prison"
  320. Prison.TextColor3 = Color3.new(1, 1, 1)
  321. Prison.TextSize = 14
  322. Prison.MouseButton1Down:connect(function()
  323. for i=1,20 do
  324. wait()
  325. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1138.66, 18.009, -1430.01) + Vector3.new(1,0,0)
  326. end
  327. end)
  328.  
  329. PoliceBase.Name = "Police Base"
  330. PoliceBase.Parent = Teleports
  331. PoliceBase.BackgroundColor3 = Color3.new(1, 1, 1)
  332. PoliceBase.BackgroundTransparency = 1
  333. PoliceBase.Position = UDim2.new(0, 0, 0.665094316, 0)
  334. PoliceBase.Size = UDim2.new(0, 94, 0, 21)
  335. PoliceBase.Font = Enum.Font.SourceSans
  336. PoliceBase.Text = "Police Base"
  337. PoliceBase.TextColor3 = Color3.new(1, 1, 1)
  338. PoliceBase.TextSize = 14
  339. PoliceBase.MouseButton1Click:connect(function()
  340. for i=1,20 do
  341. wait()
  342. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1130.11426, 17.950058, -1593.09766) + Vector3.new(1,0,0)
  343. end
  344. end)
  345.  
  346. Bank.Name = "Bank "
  347. Bank.Parent = Teleports
  348. Bank.BackgroundColor3 = Color3.new(1, 1, 1)
  349. Bank.BackgroundTransparency = 1
  350. Bank.Position = UDim2.new(0, 0, 0.830188692, 0)
  351. Bank.Size = UDim2.new(0, 94, 0, 21)
  352. Bank.Font = Enum.Font.SourceSans
  353. Bank.Text = "Bank"
  354. Bank.TextColor3 = Color3.new(1, 1, 1)
  355. Bank.TextSize = 14
  356. Bank.MouseButton1Down:connect(function()
  357. for i=1,20 do
  358. wait()
  359. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(32.214, 2.67609, 818.648926) + Vector3.new(1,0,0)
  360. end
  361. end)
  362.  
  363. Weapons.Name = "Weapons"
  364. Weapons.Parent = ScreenGui
  365. Weapons.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  366. Weapons.BackgroundTransparency = 0.30000001192093
  367. Weapons.Position = UDim2.new(0.384076118, 0, 0.0316045396, 0)
  368. Weapons.Size = UDim2.new(0, 94, 0, 212)
  369. Weapons.Active = true
  370. Weapons.Draggable = true
  371.  
  372. Credits_3.Name = "Credits"
  373. Credits_3.Parent = Weapons
  374. Credits_3.BackgroundColor3 = Color3.new(1, 1, 1)
  375. Credits_3.BackgroundTransparency = 1
  376. Credits_3.Size = UDim2.new(0, 94, 0, 27)
  377. Credits_3.Font = Enum.Font.SourceSans
  378. Credits_3.Text = "Spawn Weapons"
  379. Credits_3.TextColor3 = Color3.new(1, 1, 1)
  380. Credits_3.TextScaled = true
  381. Credits_3.TextSize = 14
  382. Credits_3.TextWrapped = true
  383.  
  384. AK47.Name = "AK47"
  385. AK47.Parent = Weapons
  386. AK47.BackgroundColor3 = Color3.new(1, 1, 1)
  387. AK47.BackgroundTransparency = 1
  388. AK47.Position = UDim2.new(0, 0, 0.169811323, 0)
  389. AK47.Size = UDim2.new(0, 94, 0, 21)
  390. AK47.Font = Enum.Font.SourceSans
  391. AK47.Text = "Spawn AK47"
  392. AK47.TextColor3 = Color3.new(1, 1, 1)
  393. AK47.TextSize = 14
  394. AK47.MouseButton1Down:connect(function()
  395. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  396.  
  397. a = Instance.new("Part", workspace)
  398. a.Anchored = true
  399. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  400. a.CanCollide = false
  401.  
  402. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  403. if v.Name == "ShootingRange" then
  404. for a, b in pairs(v:GetChildren()) do
  405. if b:IsA("StringValue") then
  406. if b.Value == "AK47" then
  407. v.CFrame = CFrame.new(hit)
  408. end
  409. end
  410. end
  411. end
  412. end
  413. end)
  414.  
  415. Shotgun.Name = "Shotgun"
  416. Shotgun.Parent = Weapons
  417. Shotgun.BackgroundColor3 = Color3.new(1, 1, 1)
  418. Shotgun.BackgroundTransparency = 1
  419. Shotgun.Position = UDim2.new(0, 0, 0.320754707, 0)
  420. Shotgun.Size = UDim2.new(0, 94, 0, 21)
  421. Shotgun.Font = Enum.Font.SourceSans
  422. Shotgun.Text = "Spawn Shotgun"
  423. Shotgun.TextColor3 = Color3.new(1, 1, 1)
  424. Shotgun.TextSize = 14
  425. Shotgun.MouseButton1Down:connect(function()
  426. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  427.  
  428. a = Instance.new("Part", workspace)
  429. a.Anchored = true
  430. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  431. a.CanCollide = false
  432.  
  433. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  434. if v.Name == "Station" then
  435. for a, b in pairs(v:GetChildren()) do
  436. if b:IsA("StringValue") then
  437. if b.Value == "Shotgun" then
  438. v.CFrame = CFrame.new(hit)
  439. end
  440. end
  441. end
  442. end
  443. end
  444. end)
  445.  
  446. M4A4.Name = "M4A4"
  447. M4A4.Parent = Weapons
  448. M4A4.BackgroundColor3 = Color3.new(1, 1, 1)
  449. M4A4.BackgroundTransparency = 1
  450. M4A4.Position = UDim2.new(0, 0, 0.490566045, 0)
  451. M4A4.Size = UDim2.new(0, 94, 0, 21)
  452. M4A4.Font = Enum.Font.SourceSans
  453. M4A4.Text = "Spawn M4A4"
  454. M4A4.TextColor3 = Color3.new(1, 1, 1)
  455. M4A4.TextSize = 14
  456. M4A4.MouseButton1Down:connect(function()
  457. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  458.  
  459. a = Instance.new("Part", workspace)
  460. a.Anchored = true
  461. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  462. a.CanCollide = false
  463.  
  464. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  465. if v.Name == "Station" then
  466. for a, b in pairs(v:GetChildren()) do
  467. if b:IsA("StringValue") then
  468. if b.Value == "RifleSWAT" then
  469. v.CFrame = CFrame.new(hit)
  470. end
  471. end
  472. end
  473. end
  474. end
  475. end)
  476.  
  477. Keycard.Name = "Keycard"
  478. Keycard.Parent = Weapons
  479. Keycard.BackgroundColor3 = Color3.new(1, 1, 1)
  480. Keycard.BackgroundTransparency = 1
  481. Keycard.Position = UDim2.new(0, 0, 0.665094316, 0)
  482. Keycard.Size = UDim2.new(0, 94, 0, 21)
  483. Keycard.Font = Enum.Font.SourceSans
  484. Keycard.Text = "Spawn Keycard"
  485. Keycard.TextColor3 = Color3.new(1, 1, 1)
  486. Keycard.TextSize = 14
  487. Keycard.MouseButton1Down:connect(function()
  488. game:GetService("Players").LocalPlayer.TeamValue.Value= "Police"
  489. end)
  490.  
  491. local mouse=game:GetService("Players").LocalPlayer:GetMouse''
  492. localplayer=game:GetService("Players").LocalPlayer
  493. game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  494. local torso = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  495. local speed=0
  496. local keys={a=false,d=false,w=false,s=false}
  497. local e1
  498. local e2
  499. local function start()
  500. local pos = Instance.new("BodyPosition",torso)
  501. local gyro = Instance.new("BodyGyro",torso)
  502. pos.Name="EPIXPOS"
  503. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  504. pos.position = torso.Position
  505. gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  506. gyro.cframe = torso.CFrame
  507. repeat
  508. wait()
  509. localplayer.Character.Humanoid.PlatformStand=true
  510. local new=gyro.cframe - gyro.cframe.p + pos.position
  511. if not keys.w and not keys.s and not keys.a and not keys.d then
  512. speed=1
  513. end
  514. if keys.w then
  515. new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  516. speed=speed+0.01
  517. end
  518. if keys.s then
  519. new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  520. speed=speed+0.01
  521. end
  522. if keys.d then
  523. new = new * CFrame.new(speed,0,0)
  524. speed=speed+0.01
  525. end
  526. if keys.a then
  527. new = new * CFrame.new(-speed,0,0)
  528. speed=speed+0.01
  529. end
  530. if speed>5 then
  531. speed=5
  532. end
  533. pos.position=new.p
  534. if keys.w then
  535. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*15),0,0)
  536. elseif keys.s then
  537. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*15),0,0)
  538. else
  539. gyro.cframe = workspace.CurrentCamera.CoordinateFrame
  540. end
  541. until not Fly
  542. if gyro then gyro:Destroy() end
  543. if pos then pos:Destroy() end
  544. flying=false
  545. localplayer.Character.Humanoid.PlatformStand=false
  546. speed=0
  547. end
  548. e1=mouse.KeyDown:connect(function(key)
  549. if not torso or not torso.Parent then flying=false e1:disconnect() e2:disconnect() return end
  550. if key=="w" then
  551. keys.w=true
  552. elseif key=="s" then
  553. keys.s=true
  554. elseif key=="a" then
  555. keys.a=true
  556. elseif key=="d" then
  557. keys.d=true
  558. end
  559. end)
  560. e2=mouse.KeyUp:connect(function(key)
  561. if key=="w" then
  562. keys.w=false
  563. elseif key=="s" then
  564. keys.s=false
  565. elseif key=="a" then
  566. keys.a=false
  567. elseif key=="d" then
  568. keys.d=false
  569. end
  570. end)
  571.  
  572. Pistol.Name = "Pistol"
  573. Pistol.Parent = Weapons
  574. Pistol.BackgroundColor3 = Color3.new(1, 1, 1)
  575. Pistol.BackgroundTransparency = 1
  576. Pistol.Position = UDim2.new(0, 0, 0.830188692, 0)
  577. Pistol.Size = UDim2.new(0, 94, 0, 21)
  578. Pistol.Font = Enum.Font.SourceSans
  579. Pistol.Text = "Spawn Pistol"
  580. Pistol.TextColor3 = Color3.new(1, 1, 1)
  581. Pistol.TextSize = 14
  582. Pistol.MouseButton1Down:connect(function()
  583. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  584.  
  585. a = Instance.new("Part", workspace)
  586. a.Anchored = true
  587. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  588. a.CanCollide = false
  589.  
  590. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  591. if v.Name == "Station" then
  592. for a, b in pairs(v:GetChildren()) do
  593. if b:IsA("StringValue") then
  594. if b.Value == "Pistol" then
  595. v.CFrame = CFrame.new(hit)
  596. end
  597. end
  598. end
  599. end
  600. end
  601. end)
  602.  
  603. Extra.Name = "Extra"
  604. Extra.Parent = ScreenGui
  605. Extra.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  606. Extra.BackgroundTransparency = 0.30000001192093
  607. Extra.Position = UDim2.new(0.490736127, 0, 0.0316045396, 0)
  608. Extra.Size = UDim2.new(0, 94, 0, 212)
  609. Extra.Active = true
  610. Extra.Draggable = true
  611.  
  612. Credits_4.Name = "Credits"
  613. Credits_4.Parent = Extra
  614. Credits_4.BackgroundColor3 = Color3.new(1, 1, 1)
  615. Credits_4.BackgroundTransparency = 1
  616. Credits_4.Size = UDim2.new(0, 94, 0, 27)
  617. Credits_4.Font = Enum.Font.SourceSans
  618. Credits_4.Text = "Extra"
  619. Credits_4.TextColor3 = Color3.new(1, 1, 1)
  620. Credits_4.TextScaled = true
  621. Credits_4.TextSize = 14
  622. Credits_4.TextWrapped = true
  623.  
  624. ChatBypass.Name = "Chat Bypass"
  625. ChatBypass.Parent = Extra
  626. ChatBypass.BackgroundColor3 = Color3.new(1, 1, 1)
  627. ChatBypass.BackgroundTransparency = 1
  628. ChatBypass.Position = UDim2.new(0, 0, 0.169811323, 0)
  629. ChatBypass.Size = UDim2.new(0, 94, 0, 21)
  630. ChatBypass.Font = Enum.Font.SourceSans
  631. ChatBypass.Text = "Chat Bypasser"
  632. ChatBypass.TextColor3 = Color3.new(1, 1, 1)
  633. ChatBypass.TextSize = 14
  634. --All credits goes to sn#7403 for making this wonderful OP script!
  635. loadstring(game:HttpGet("https://pastebin.com/raw/iy9ZNHG1", true))()
  636.  
  637. ClickTP.Name = "ClickTP "
  638. ClickTP.Parent = Extra
  639. ClickTP.BackgroundColor3 = Color3.new(1, 1, 1)
  640. ClickTP.BackgroundTransparency = 1
  641. ClickTP.Position = UDim2.new(0, 0, 0.320754707, 0)
  642. ClickTP.Size = UDim2.new(0, 94, 0, 21)
  643. ClickTP.Font = Enum.Font.SourceSans
  644. ClickTP.Text = "ClickTP [N]"
  645. ClickTP.TextColor3 = Color3.new(1, 1, 1)
  646. ClickTP.TextSize = 14
  647. ClickTP.MouseButton1Click:Connect(function()
  648. toggle = true
  649. togglekey = "n" --Key that you will use to toggle the on and off
  650. killkey = "k" --Key that you will use to kill a player
  651. function Hint(txt)
  652. local b = Instance.new('Hint', workspace)
  653. b.Text = txt
  654. wait(2)
  655. b:Destroy()
  656. end
  657. Local = game:GetService('Players').LocalPlayer
  658. Mouse = Local:GetMouse()
  659. Mouse.Button1Down:connect(function()
  660. pcall(function()
  661. if toggle then
  662. Local.Character.HumanoidRootPart.CFrame = Local:GetMouse().Hit
  663. end
  664. end)
  665. end)
  666. Mouse.KeyDown:connect(function(key)
  667. if key == togglekey then
  668. if toggle then
  669. toggle = false
  670. Hint('Turned Off!')
  671. print ('Turned Off!')
  672. else
  673. toggle = true
  674. Hint('Turned On!')
  675. print ('Turned On!')
  676. end
  677. elseif key == killkey then
  678. if toggle then
  679. pcall(function()
  680. Mouse.Target.Parent:FindFirstChild('Humanoid').Health = 0
  681. Hint('Killed ' .. Mouse.Target.Parent.Name)
  682. end)
  683. end
  684. end
  685. end)
  686. end)
  687.  
  688. Fling.Name = "Fling"
  689. Fling.Parent = Extra
  690. Fling.BackgroundColor3 = Color3.new(1, 1, 1)
  691. Fling.BackgroundTransparency = 1
  692. Fling.Position = UDim2.new(0, 0, 0.490566045, 0)
  693. Fling.Size = UDim2.new(0, 94, 0, 21)
  694. Fling.Font = Enum.Font.SourceSans
  695. Fling.Text = "Fling"
  696. Fling.TextColor3 = Color3.new(1, 1, 1)
  697. Fling.TextSize = 14
  698. Fling.MouseButton1Click:Connect(function()
  699. -- Made By JackMcJagger15
  700. local FlingKill = Instance.new("ScreenGui")
  701. local Main = Instance.new("Frame")
  702. local Label = Instance.new("Frame")
  703. local Shadow = Instance.new("Frame")
  704. local StartKill = Instance.new("TextButton")
  705. local StopKill = Instance.new("TextButton")
  706. local Instructions = Instance.new("TextLabel")
  707. local CurrentPower = Instance.new("TextLabel")
  708. local Recomendation = Instance.new("TextLabel")
  709. local NameOfGui = Instance.new("TextLabel")
  710. local Exit = Instance.new("TextButton")
  711. local UPArrow = Instance.new("TextButton")
  712. local DownArrow = Instance.new("TextButton")
  713.  
  714. -- Properties
  715.  
  716. FlingKill.Name = "Fling/Kill"
  717. FlingKill.Parent = game.CoreGui
  718.  
  719. Main.Name = "Main"
  720. Main.Parent = FlingKill
  721. Main.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  722. Main.BorderSizePixel = 0
  723. Main.Position = UDim2.new(0.702554762, 0, 0.446640313, 0)
  724. Main.Size = UDim2.new(0, 217, 0, 233)
  725. Main.Selectable = true
  726. Main.Active = true
  727. Main.Draggable = true
  728.  
  729. Label.Name = "Label"
  730. Label.Parent = Main
  731. Label.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  732. Label.BorderSizePixel = 0
  733. Label.Size = UDim2.new(0, 217, 0, 27)
  734.  
  735. Shadow.Name = "Shadow"
  736. Shadow.Parent = Main
  737. Shadow.BackgroundColor3 = Color3.new(0.67451, 0.694118, 0.705882)
  738. Shadow.BorderSizePixel = 0
  739. Shadow.Position = UDim2.new(0, 0, 0.115879826, 0)
  740. Shadow.Size = UDim2.new(0, 217, 0, 9)
  741.  
  742. StartKill.Name = "StartKill"
  743. StartKill.Parent = Main
  744. StartKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  745. StartKill.BorderSizePixel = 0
  746. StartKill.Position = UDim2.new(0.195852548, 0, 0.227467805, 0)
  747. StartKill.Size = UDim2.new(0, 126, 0, 23)
  748. StartKill.Font = Enum.Font.Cartoon
  749. StartKill.Text = "FE Kill/Fling"
  750. StartKill.TextColor3 = Color3.new(0, 0, 0)
  751. StartKill.TextSize = 14
  752.  
  753. StopKill.Name = "StopKill"
  754. StopKill.Parent = Main
  755. StopKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  756. StopKill.BorderSizePixel = 0
  757. StopKill.Position = UDim2.new(0.207373276, 0, 0.38197428, 0)
  758. StopKill.Size = UDim2.new(0, 124, 0, 23)
  759. StopKill.Font = Enum.Font.Cartoon
  760. StopKill.Text = "Stop FE Kill/Fling"
  761. StopKill.TextColor3 = Color3.new(0, 0, 0)
  762. StopKill.TextSize = 14
  763.  
  764. Instructions.Name = "Instructions"
  765. Instructions.Parent = Main
  766. Instructions.BackgroundColor3 = Color3.new(1, 1, 1)
  767. Instructions.BackgroundTransparency = 1
  768. Instructions.Position = UDim2.new(0.0391705073, 0, 0.549356222, 0)
  769. Instructions.Size = UDim2.new(0, 200, 0, 32)
  770. Instructions.Font = Enum.Font.Cartoon
  771. Instructions.Text = "Just touch someone to watch the fly to their death!"
  772. Instructions.TextColor3 = Color3.new(0, 0, 0)
  773. Instructions.TextSize = 14
  774. Instructions.TextWrapped = true
  775.  
  776. CurrentPower.Name = "CurrentPower"
  777. CurrentPower.Parent = Main
  778. CurrentPower.BackgroundColor3 = Color3.new(1, 1, 1)
  779. CurrentPower.BackgroundTransparency = 1
  780. CurrentPower.Position = UDim2.new(0.276497692, 0, 0.686695278, 0)
  781. CurrentPower.Size = UDim2.new(0, 98, 0, 36)
  782. CurrentPower.Font = Enum.Font.Cartoon
  783. CurrentPower.Text = "Current Power = 5"
  784. CurrentPower.TextColor3 = Color3.new(0, 0, 0)
  785. CurrentPower.TextSize = 14
  786.  
  787. Recomendation.Name = "Recomendation"
  788. Recomendation.Parent = Main
  789. Recomendation.BackgroundColor3 = Color3.new(1, 1, 1)
  790. Recomendation.BackgroundTransparency = 1
  791. Recomendation.Position = UDim2.new(0.0414746553, 0, 0.884120166, 0)
  792. Recomendation.Size = UDim2.new(0, 200, 0, 21)
  793. Recomendation.Font = Enum.Font.Cartoon
  794. Recomendation.Text = "Recommended Power is 5"
  795. Recomendation.TextColor3 = Color3.new(0, 0, 0)
  796. Recomendation.TextSize = 14
  797.  
  798. NameOfGui.Name = "NameOfGui"
  799. NameOfGui.Parent = Main
  800. NameOfGui.BackgroundColor3 = Color3.new(1, 1, 1)
  801. NameOfGui.BackgroundTransparency = 1
  802. NameOfGui.Position = UDim2.new(0.0806451589, 0, 0, 0)
  803. NameOfGui.Size = UDim2.new(0, 154, 0, 27)
  804. NameOfGui.Font = Enum.Font.Cartoon
  805. NameOfGui.Text = "FE Kill/Fling By JackMcJagger15"
  806. NameOfGui.TextColor3 = Color3.new(0, 0, 0)
  807. NameOfGui.TextSize = 14
  808.  
  809. Exit.Name = "Exit"
  810. Exit.Parent = Main
  811. Exit.BackgroundColor3 = Color3.new(1, 1, 1)
  812. Exit.BackgroundTransparency = 1
  813. Exit.Position = UDim2.new(0.907834113, 0, 0, 0)
  814. Exit.Size = UDim2.new(0, 20, 0, 27)
  815. Exit.Font = Enum.Font.Cartoon
  816. Exit.Text = "X"
  817. Exit.TextColor3 = Color3.new(0, 0, 0)
  818. Exit.TextSize = 14
  819.  
  820. UPArrow.Name = "UPArrow"
  821. UPArrow.Parent = Main
  822. UPArrow.BackgroundColor3 = Color3.new(1, 1, 1)
  823. UPArrow.BackgroundTransparency = 1
  824. UPArrow.Position = UDim2.new(0.0783410147, 0, 0.716738224, 0)
  825. UPArrow.Size = UDim2.new(0, 26, 0, 23)
  826. UPArrow.Font = Enum.Font.Cartoon
  827. UPArrow.Text = "Up"
  828. UPArrow.TextColor3 = Color3.new(0, 0, 0)
  829. UPArrow.TextSize = 12
  830. UPArrow.TextWrapped = true
  831.  
  832. DownArrow.Name = "DownArrow"
  833. DownArrow.Parent = Main
  834. DownArrow.BackgroundColor3 = Color3.new(1, 1, 1)
  835. DownArrow.BackgroundTransparency = 1
  836. DownArrow.Position = UDim2.new(0.792626739, 0, 0.714592278, 0)
  837. DownArrow.Size = UDim2.new(0, 26, 0, 23)
  838. DownArrow.Font = Enum.Font.Cartoon
  839. DownArrow.Text = "Down"
  840. DownArrow.TextColor3 = Color3.new(0, 0, 0)
  841. DownArrow.TextSize = 12
  842. DownArrow.TextWrapped = true
  843.  
  844. power = 500
  845. active = false
  846. local val = Instance.new("IntValue")
  847. val.Name = "Number"
  848. val.Parent = game.Players.LocalPlayer
  849. val.Value = 5
  850.  
  851. Exit.MouseButton1Click:connect(function()
  852. FlingKill.Enabled = false
  853. end)
  854.  
  855. StartKill.MouseButton1Click:connect(function()
  856. game:GetService('RunService').Stepped:connect(function()
  857. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  858. game.Players.LocalPlayer.Character.Head.CanCollide = false
  859. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  860. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  861. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  862. else
  863. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  864. game.Players.LocalPlayer.Character.Head.CanCollide = false
  865. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
  866. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
  867. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  868. end
  869. end
  870. end)
  871. wait(.1)
  872. local bambam = Instance.new("BodyThrust")
  873. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  874. bambam.Force = Vector3.new(power,0,power)
  875. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  876. end)
  877.  
  878. StopKill.MouseButton1Click:connect(function()
  879. active = false
  880. game.Players.LocalPlayer.Character.HumanoidRootPart.BodyThrust:Remove()
  881. end)
  882.  
  883. UPArrow.MouseButton1Click:connect(function()
  884. power = power + 100
  885. game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value + 1
  886. CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
  887. end)
  888.  
  889. DownArrow.MouseButton1Click:connect(function()
  890. power = power - 100
  891. game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value - 1
  892. CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
  893. end)
  894. end)
  895.  
  896. EatMe.Name = "Eat Me"
  897. EatMe.Parent = Extra
  898. EatMe.BackgroundColor3 = Color3.new(1, 1, 1)
  899. EatMe.BackgroundTransparency = 1
  900. EatMe.Position = UDim2.new(0, 0, 0.665094316, 0)
  901. EatMe.Size = UDim2.new(0, 94, 0, 21)
  902. EatMe.Font = Enum.Font.SourceSans
  903. EatMe.Text = "Joe Mama"
  904. EatMe.TextColor3 = Color3.new(1, 1, 1)
  905. EatMe.TextSize = 14
  906.  
  907. Fly.Name = "Fly"
  908. Fly.Parent = Extra
  909. Fly.BackgroundColor3 = Color3.new(1, 1, 1)
  910. Fly.BackgroundTransparency = 1
  911. Fly.Position = UDim2.new(0, 0, 0.830188692, 0)
  912. Fly.Size = UDim2.new(0, 94, 0, 21)
  913. Fly.Font = Enum.Font.SourceSans
  914. Fly.Text = "Fly [Q]"
  915. Fly.TextColor3 = Color3.new(1, 1, 1)
  916. Fly.TextSize = 14
  917. Fly.MouseButton1Down:connect(function()
  918. local Enabled = false
  919. local Camera = game.Workspace.CurrentCamera
  920. local Player = game:GetService("Players").LocalPlayer
  921. local Input = game:GetService("UserInputService")
  922. local Forward = false
  923. local Back = false
  924. local Left = false
  925. local Right = false
  926. local Up = false
  927. local Down = false
  928.  
  929. local function SetPlayer()
  930. for i,v in pairs(Player.Character:GetChildren()) do
  931. pcall(function()
  932. v.Anchored = not v.Anchored
  933. end)
  934. end
  935. end
  936.  
  937. Input.InputBegan:Connect(function(Key,IsChat)
  938. if IsChat then return end
  939. if Key.KeyCode == Enum.KeyCode.Q then
  940. Enabled = not Enabled
  941. SetPlayer()
  942. end
  943. if Key.KeyCode == Enum.KeyCode.W then
  944. Forward = true
  945. end
  946. if Key.KeyCode == Enum.KeyCode.S then
  947. Back = true
  948. end
  949. if Key.KeyCode == Enum.KeyCode.A then
  950. Left = true
  951. end
  952. if Key.KeyCode == Enum.KeyCode.D then
  953. Right = true
  954. end
  955. if Key.KeyCode == Enum.KeyCode.Space then
  956. Up = true
  957. end
  958. if Key.KeyCode == Enum.KeyCode.LeftControl then
  959. Down = true
  960. end
  961. end)
  962.  
  963. Input.InputEnded:Connect(function(Key,IsChat)
  964. if IsChat then return end
  965. if Key.KeyCode == Enum.KeyCode.W then
  966. Forward = false
  967. end
  968. if Key.KeyCode == Enum.KeyCode.S then
  969. Back = false
  970. end
  971. if Key.KeyCode == Enum.KeyCode.A then
  972. Left = false
  973. end
  974. if Key.KeyCode == Enum.KeyCode.D then
  975. Right = false
  976. end
  977. if Key.KeyCode == Enum.KeyCode.Space then
  978. Up = false
  979. end
  980. if Key.KeyCode == Enum.KeyCode.LeftControl then
  981. Down = false
  982. end
  983. end)
  984.  
  985. while game:GetService("RunService").RenderStepped:Wait() do
  986. if Enabled then
  987. pcall(function()
  988. if Forward then
  989. Player.Character:TranslateBy(Camera.CFrame.lookVector*2)
  990. end
  991. if Back then
  992. Player.Character:TranslateBy(-Camera.CFrame.lookVector*2)
  993. end
  994. if Left then
  995. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  996. end
  997. if Right then
  998. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  999. end
  1000. if Up then
  1001. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  1002. end
  1003. if Down then
  1004. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  1005. end
  1006. end)
  1007. end
  1008. end
  1009. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement