DanielTG

Untitled

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