airsoftjake1

Untitled

Jun 19th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.99 KB | None | 0 0
  1. local wsmode = 1
  2. local jpmode = 1
  3. local gothrough = false
  4. local lotptog = false
  5. local bodyang = nil
  6. local cameratoggle = false
  7. local spintoggle = false
  8. local flytoggle = false
  9. local scg = Instance.new('ScreenGui',game.Players.LocalPlayer.PlayerGui)
  10. scg.ResetOnSpawn = false
  11. local frm = Instance.new('Frame',scg)
  12. frm.BorderSizePixel = 0
  13. frm.BackgroundColor3 = Color3.new(255/255,122/255,122/255)
  14. frm.Size = UDim2.new(0.3,0,0.3,0)
  15. frm.Position = UDim2.new(0.35,0,0.35,0)
  16. frm.Draggable = true
  17.  
  18.  
  19. local topl = Instance.new('TextLabel',frm)
  20. topl.BorderSizePixel = 0
  21. topl.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  22. topl.Size = UDim2.new(0.9,1,0.2,0)
  23. topl.Position = UDim2.new(0,0,0,0)
  24. topl.TextScaled = true
  25. topl.Font = "SourceSansLight"
  26. topl.TextColor3 = Color3.new(1,1,1)
  27. topl.Text = "Epix's FE Gui V1.1"
  28. topl.Draggable = true
  29.  
  30. local scrl = Instance.new('ScrollingFrame',frm)
  31. scrl.BorderSizePixel = 0
  32. scrl.BackgroundColor3 = Color3.new(255/255,122/255,122/255)
  33. scrl.Size = UDim2.new(1,0,0.8,0)
  34. scrl.Position = UDim2.new(0,0,0.2,0)
  35. scrl.BottomImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
  36. scrl.TopImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43. local plr = Instance.new('TextBox',scrl)
  44. plr.BorderSizePixel = 0
  45. plr.BackgroundColor3 = Color3.new(255/255,150/255,150/255)
  46. plr.Size = UDim2.new(0.425,0,0.1,0)
  47. plr.Position = UDim2.new(0.05,0,0.025,0)
  48. plr.TextScaled = true
  49. plr.Font = "SourceSansLight"
  50. plr.TextColor3 = Color3.new(1,1,1)
  51. plr.Text = "Player Specify"
  52.  
  53.  
  54. local plrsp = Instance.new('TextButton',scrl)
  55. plrsp.BorderSizePixel = 0
  56. plrsp.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  57. plrsp.Size = UDim2.new(0.425,0,0.1,0)
  58. plrsp.Position = UDim2.new(0.5,0,0.025,0)
  59. plrsp.TextScaled = true
  60. plrsp.Font = "SourceSansLight"
  61. plrsp.TextColor3 = Color3.new(1,1,1)
  62. plrsp.Text = "Spawn Blocks"
  63.  
  64.  
  65. local minim = Instance.new('TextButton',frm)
  66. minim.BorderSizePixel = 0
  67. minim.BackgroundColor3 = Color3.new(200/255,50/255,50/255)
  68. minim.Size = UDim2.new(0.1,0,0.2,0)
  69. minim.Position = UDim2.new(0.9,0,0,0)
  70. minim.TextScaled = true
  71. minim.Font = "SourceSansLight"
  72. minim.TextColor3 = Color3.new(1,1,1)
  73. minim.Text = "-"
  74.  
  75.  
  76.  
  77.  
  78.  
  79. function sblock()
  80. for i=1,20 do
  81. wait(1)
  82. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  83. if v:IsA'Accoutrement' then
  84. v.Parent=game.Players.LocalPlayer.Character
  85. v.Parent = workspace.Terrain
  86. end
  87. end
  88. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  89. if v:IsA'Accoutrement' then
  90. for ape,hax in pairs(v.Handle:GetChildren()) do
  91. hax:Destroy()
  92. end
  93. wait'.1'
  94. v.Parent=game.Players.LocalPlayer.StarterGear
  95. end
  96. end
  97. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  98. v:Destroy()
  99. end
  100. local prt=Instance.new("Model", workspace);
  101. Instance.new("Part", prt).Name="Torso";
  102. Instance.new("Part", prt).Name="Head";
  103. Instance.new("Humanoid", prt).Name="Humanoid";
  104. game.Players.LocalPlayer.Character=prt
  105.  
  106. repeat wait(1) until game.Players.LocalPlayer.Character:FindFirstChild'Head'
  107. for lol,dad in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  108. if dad:IsA'Accoutrement' then
  109. dad.Parent = game.Players.LocalPlayer.StarterGear
  110. end
  111. end
  112. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  113. v:Destroy()
  114. end
  115. local prt2=Instance.new("Model", workspace);
  116. Instance.new("Part", prt).Name="Torso";
  117. Instance.new("Part", prt).Name="Head";
  118. Instance.new("Humanoid", prt).Name="Humanoid";
  119. game.Players.LocalPlayer.Character=prt
  120. end
  121. end
  122. plrsp.MouseButton1Click:connect(sblock)
  123.  
  124.  
  125.  
  126.  
  127.  
  128. local spin = Instance.new('TextButton',scrl)
  129. spin.BorderSizePixel = 0
  130. spin.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  131. spin.Size = UDim2.new(0.425,0,0.1,0)
  132. spin.Position = UDim2.new(0.05,0,0.15,0)
  133. spin.TextScaled = true
  134. spin.Font = "SourceSansLight"
  135. spin.TextColor3 = Color3.new(1,1,1)
  136. spin.Text = "Crazy Spin: OFF"
  137.  
  138. local fly = Instance.new('TextButton',scrl)
  139. fly.BorderSizePixel = 0
  140. fly.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  141. fly.Size = UDim2.new(0.425,0,0.1,0)
  142. fly.Position = UDim2.new(0.5,0,0.15,0)
  143. fly.TextScaled = true
  144. fly.Font = "SourceSansLight"
  145. fly.TextColor3 = Color3.new(1,1,1)
  146. fly.Text = "Fly: OFF"
  147.  
  148.  
  149.  
  150.  
  151. local seethr = Instance.new('TextButton',scrl)
  152. seethr.BorderSizePixel = 0
  153. seethr.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  154. seethr.Size = UDim2.new(0.425,0,0.1,0)
  155. seethr.Position = UDim2.new(0.05,0,0.275,0)
  156. seethr.TextScaled = true
  157. seethr.Font = "SourceSansLight"
  158. seethr.TextColor3 = Color3.new(1,1,1)
  159. seethr.Text = "See-Through: OFF"
  160.  
  161. local tpto = Instance.new('TextButton',scrl)
  162. tpto.BorderSizePixel = 0
  163. tpto.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  164. tpto.Size = UDim2.new(0.425,0,0.1,0)
  165. tpto.Position = UDim2.new(0.5,0,0.275,0)
  166. tpto.TextScaled = true
  167. tpto.Font = "SourceSansLight"
  168. tpto.TextColor3 = Color3.new(1,1,1)
  169. tpto.Text = "Teleport To"
  170.  
  171.  
  172.  
  173. local ws = Instance.new('TextButton',scrl)
  174. ws.BorderSizePixel = 0
  175. ws.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  176. ws.Size = UDim2.new(0.425,0,0.1,0)
  177. ws.Position = UDim2.new(0.05,0,0.4,0)
  178. ws.TextScaled = true
  179. ws.Font = "SourceSansLight"
  180. ws.TextColor3 = Color3.new(1,1,1)
  181. ws.Text = "WalkSpeed: Normal"
  182.  
  183. local jp = Instance.new('TextButton',scrl)
  184. jp.BorderSizePixel = 0
  185. jp.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  186. jp.Size = UDim2.new(0.425,0,0.1,0)
  187. jp.Position = UDim2.new(0.5,0,0.4,0)
  188. jp.TextScaled = true
  189. jp.Font = "SourceSansLight"
  190. jp.TextColor3 = Color3.new(1,1,1)
  191. jp.Text = "JumpPower: Normal"
  192.  
  193.  
  194.  
  195.  
  196.  
  197. local lotp = Instance.new('TextButton',scrl)
  198. lotp.BorderSizePixel = 0
  199. lotp.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  200. lotp.Size = UDim2.new(0.425,0,0.1,0)
  201. lotp.Position = UDim2.new(0.05,0,0.525,0)
  202. lotp.TextScaled = true
  203. lotp.Font = "SourceSansLight"
  204. lotp.TextColor3 = Color3.new(1,1,1)
  205. lotp.Text = "Loop-Teleport: OFF"
  206.  
  207. local sb = Instance.new('TextButton',scrl)
  208. sb.BorderSizePixel = 0
  209. sb.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  210. sb.Size = UDim2.new(0.425,0,0.1,0)
  211. sb.Position = UDim2.new(0.5,0,0.525,0)
  212. sb.TextScaled = true
  213. sb.Font = "SourceSansLight"
  214. sb.TextColor3 = Color3.new(1,1,1)
  215. sb.Text = "Noclip"
  216.  
  217.  
  218. local cr = Instance.new('TextLabel',scrl)
  219. cr.BorderSizePixel = 0
  220. cr.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  221. cr.Size = UDim2.new(0.875,0,0.225,0)
  222. cr.Position = UDim2.new(0.05,0,0.65,0)
  223. cr.TextScaled = true
  224. cr.Font = "SourceSansLight"
  225. cr.TextColor3 = Color3.new(1,1,1)
  226. cr.Text = "Gui Created by Epix#2044 on Discord."
  227.  
  228.  
  229. local fl = Instance.new('TextLabel',scrl)
  230. fl.BorderSizePixel = 0
  231. fl.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  232. fl.Size = UDim2.new(0.875,0,0.075,0)
  233. fl.Position = UDim2.new(0.05,0,0.9,0)
  234. fl.TextScaled = true
  235. fl.Font = "SourceSansLight"
  236. fl.TextColor3 = Color3.new(1,1,1)
  237. if game.Workspace.FilteringEnabled == true then
  238. fl.Text = "Filtering is Enabled"
  239. else
  240. fl.Text = "Filtering is Disabled"
  241. end
  242.  
  243.  
  244.  
  245.  
  246. local gui2 = Instance.new('ScreenGui',game.Players.LocalPlayer.PlayerGui)
  247. gui2.ResetOnSpawn = false
  248.  
  249.  
  250. local oc = Instance.new('TextButton',gui2)
  251. oc.BorderSizePixel = 0
  252. oc.BackgroundColor3 = Color3.new(255/255,70/255,70/255)
  253. oc.Size = UDim2.new(0,50,0,50)
  254. oc.Position = UDim2.new(0,0,0,0)
  255. oc.TextScaled = true
  256. oc.Font = "SourceSansLight"
  257. oc.TextColor3 = Color3.new(1,1,1)
  258. oc.Text = "Close"
  259. oc.Draggable = true
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270. local speed = 50 -- This is the fly speed. Change it to whatever you like. The variable can be changed while running
  271.  
  272. local c
  273. local h
  274. local bv
  275. local bav
  276. local cam
  277. local flying
  278. local p = game.Players.LocalPlayer
  279. local buttons = {W = false, S = false, A = false, D = false, Moving = false}
  280.  
  281. local startFly = function () -- Call this function to begin flying
  282. if not p.Character or not p.Character.Head or flying then return end
  283. c = p.Character
  284. h = c.Humanoid
  285. h.PlatformStand = true
  286. cam = workspace:WaitForChild('Camera')
  287. bv = Instance.new("BodyVelocity")
  288. bav = Instance.new("BodyAngularVelocity")
  289. bv.Velocity, bv.MaxForce, bv.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  290. bav.AngularVelocity, bav.MaxTorque, bav.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  291. bv.Parent = c.Head
  292. bav.Parent = c.Head
  293. flying = true
  294. h.Died:connect(function() flying = false end)
  295. end
  296.  
  297. local endFly = function () -- Call this function to stop flying
  298. if not p.Character or not flying then return end
  299. h.PlatformStand = false
  300. bv:Destroy()
  301. bav:Destroy()
  302. flying = false
  303. end
  304.  
  305. game:GetService("UserInputService").InputBegan:connect(function (input, GPE)
  306. if GPE then return end
  307. for i, e in pairs(buttons) do
  308. if i ~= "Moving" and input.KeyCode == Enum.KeyCode[i] then
  309. buttons[i] = true
  310. buttons.Moving = true
  311. end
  312. end
  313. end)
  314.  
  315. game:GetService("UserInputService").InputEnded:connect(function (input, GPE)
  316. if GPE then return end
  317. local a = false
  318. for i, e in pairs(buttons) do
  319. if i ~= "Moving" then
  320. if input.KeyCode == Enum.KeyCode[i] then
  321. buttons[i] = false
  322. end
  323. if buttons[i] then a = true end
  324. end
  325. end
  326. buttons.Moving = a
  327. end)
  328.  
  329. local setVec = function (vec)
  330. return vec * (speed / vec.Magnitude)
  331. end
  332.  
  333. game:GetService("RunService").Heartbeat:connect(function (step) -- The actual fly function, called every frame
  334. if flying and c and c.PrimaryPart then
  335. local p = c.PrimaryPart.Position
  336. local cf = cam.CFrame
  337. local ax, ay, az = cf:toEulerAnglesXYZ()
  338. c:SetPrimaryPartCFrame(CFrame.new(p.x, p.y, p.z) * CFrame.Angles(ax, ay, az))
  339. if buttons.Moving then
  340. local t = Vector3.new()
  341. if buttons.W then t = t + (setVec(cf.lookVector)) end
  342. if buttons.S then t = t - (setVec(cf.lookVector)) end
  343. if buttons.A then t = t - (setVec(cf.rightVector)) end
  344. if buttons.D then t = t + (setVec(cf.rightVector)) end
  345. c:TranslateBy(t * step)
  346. end
  347. end
  348. end)
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363. function spintogl()
  364. if spintoggle == true then
  365. spintoggle = false
  366. spin.Text = "Crazy Spin: OFF"
  367. else
  368. spintoggle = true
  369. spin.Text = "Crazy Spin: ON"
  370. local bodyang = Instance.new('BodyAngularVelocity',game.Players.LocalPlayer.Character.PrimaryPart)
  371. bodyang.AngularVelocity = Vector3.new(90,999,0)
  372. bodyang.MaxTorque = Vector3.new(60000,100,3000)
  373. bodyang.P = 5000000
  374. repeat
  375. wait(0.001)
  376. until spintoggle == false
  377. bodyang:Destroy()
  378. end
  379. end
  380. spin.MouseButton1Click:connect(spintogl)
  381.  
  382.  
  383. function flytogl()
  384. if flytoggle == true then
  385. flytoggle = false
  386. fly.Text = "Fly: OFF"
  387. else
  388. flytoggle = true
  389. fly.Text = "Fly: ON"
  390. startFly()
  391. repeat
  392. wait(0.001)
  393. until flytoggle == false
  394. endFly()
  395. end
  396. end
  397. fly.MouseButton1Click:connect(flytogl)
  398.  
  399.  
  400.  
  401. function opctogl()
  402. if scg.Enabled == true then
  403. scg.Enabled = false
  404. oc.Text = "Open"
  405. else
  406. scg.Enabled = true
  407. oc.Text = "Close"
  408. end
  409. end
  410. oc.MouseButton1Click:connect(opctogl)
  411. function telep()
  412. game.Players.LocalPlayer.Character:MoveTo(game.Players:FindFirstChild(plr.Text).Character.PrimaryPart.Position)
  413. end
  414. tpto.MouseButton1Click:connect(telep)
  415.  
  416.  
  417. function camtogl()
  418. if cameratoggle == false then
  419. cameratoggle = true
  420. game.Workspace.CurrentCamera.CameraType = "Follow"
  421. seethr.Text = "See-Through: ON"
  422. else
  423. cameratoggle = false
  424. game.Workspace.CurrentCamera.CameraType = "Custom"
  425. seethr.Text = "See-Through: OFF"
  426. end
  427. end
  428. seethr.MouseButton1Click:connect(camtogl)
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435. function wsp()
  436. if wsmode ~= 5 then
  437. wsmode = wsmode + 1
  438. else
  439. wsmode = 1
  440. end
  441. if wsmode == 1 then
  442. ws.Text = "WalkSpeed: Normal"
  443. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  444. end
  445. if wsmode == 2 then
  446. ws.Text = "WalkSpeed: Fast"
  447. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 32
  448. end
  449. if wsmode == 3 then
  450. ws.Text = "WalkSpeed: FASTER"
  451. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 70
  452. end
  453. if wsmode == 4 then
  454. ws.Text = "WalkSpeed: EXTREME"
  455. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
  456. end
  457. if wsmode == 5 then
  458. ws.Text = "WalkSpeed: The Speed of Light"
  459. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 4357234785243
  460. end
  461. end
  462. ws.MouseButton1Click:connect(wsp)
  463.  
  464.  
  465.  
  466.  
  467.  
  468. function jpp()
  469. if jpmode ~= 5 then
  470. jpmode = jpmode + 1
  471. else
  472. jpmode = 1
  473. end
  474. if jpmode == 1 then
  475. jp.Text = "JumpPower: Normal"
  476. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  477. end
  478. if jpmode == 2 then
  479. jp.Text = "JumpPower: Trampoline"
  480. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  481. end
  482. if jpmode == 3 then
  483. jp.Text = "JumpPower: Big Trampoline"
  484. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 200
  485. end
  486. if jpmode == 4 then
  487. jp.Text = "JumpPower: Bigger Trampoline"
  488. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 400
  489. end
  490. if jpmode == 5 then
  491. jp.Text = "JumpPower: The Speed of Light"
  492. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 80000
  493. end
  494. end
  495. jp.MouseButton1Click:connect(jpp)
  496.  
  497. function spawnblock()
  498. if gothrough == false then
  499. gothrough = true
  500. sb.Text = "Noclip"
  501. local gc = game.Players.LocalPlayer.Character:GetChildren()
  502. for i = 1,#gc,1 do
  503. if (gc[i].ClassName == "Part") or (gc[i].ClassName == "MeshPart") then
  504. gc[i].CollisionGroupId = 29
  505. end
  506. end
  507. game:service("RunService").Stepped:wait()
  508. else
  509. gothrough = false
  510. sb.Text = "Noclip"
  511. local gc = game.Players.LocalPlayer.Character:GetChildren()
  512. for i = 1,#gc,1 do
  513. if (gc[i].ClassName == "Part") or (gc[i].ClassName == "MeshPart") then
  514. gc[i].CollisionGroupId = 1
  515. game:service("RunService").Stepped:wait()
  516. end
  517. end
  518. end
  519. end
  520. sb.MouseButton1Click:connect(spawnblock)
  521. function looptelep()
  522. if lotptog == false then
  523. lotptog = true
  524. lotp.Text = "Loop-Teleport: ON"
  525. repeat
  526. game.Players.LocalPlayer.Character:MoveTo(game.Players:FindFirstChild(plr.Text).Character.PrimaryPart.Position)
  527. wait(0.001)
  528. until lotptog == false
  529. else
  530. lotptog = false
  531. lotp.Text = "Loop-Teleport: OFF"
  532. end
  533. end
  534. lotp.MouseButton1Click:connect(looptelep)
  535.  
  536.  
  537. function minimi()
  538. scg.Enabled = false
  539. oc.Text = "Open"
  540. end
  541. minim.MouseButton1Click:connect(minimi)
Add Comment
Please, Sign In to add comment