Advertisement
Upscalefanatic3

Newbies Fe GUI

Jul 30th, 2017
15,354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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 = "Newbie'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 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."
  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.  
  271.  
  272.  
  273. -- FLY SCRIPT BY RGEENEUS
  274.  
  275. -- The following code should be in a local script.
  276. -- Only works on PC, not xbox or mobile. I do not have devices to test on.
  277. -- Call the start fly function AFTER the character exists to fly. The function does not run if there is no character.
  278.  
  279. local speed = 50 -- This is the fly speed. Change it to whatever you like. The variable can be changed while running
  280.  
  281. local c
  282. local h
  283. local bv
  284. local bav
  285. local cam
  286. local flying
  287. local p = game.Players.LocalPlayer
  288. local buttons = {W = false, S = false, A = false, D = false, Moving = false}
  289.  
  290. local startFly = function () -- Call this function to begin flying
  291.     if not p.Character or not p.Character.Head or flying then return end
  292.     c = p.Character
  293.     h = c.Humanoid
  294.     h.PlatformStand = true
  295.     cam = workspace:WaitForChild('Camera')
  296.     bv = Instance.new("BodyVelocity")
  297.     bav = Instance.new("BodyAngularVelocity")
  298.     bv.Velocity, bv.MaxForce, bv.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  299.     bav.AngularVelocity, bav.MaxTorque, bav.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  300.     bv.Parent = c.Head
  301.     bav.Parent = c.Head
  302.     flying = true
  303.     h.Died:connect(function() flying = false end)
  304. end
  305.  
  306. local endFly = function () -- Call this function to stop flying
  307.     if not p.Character or not flying then return end
  308.     h.PlatformStand = false
  309.     bv:Destroy()
  310.     bav:Destroy()
  311.     flying = false
  312. end
  313.  
  314. game:GetService("UserInputService").InputBegan:connect(function (input, GPE)
  315.     if GPE then return end
  316.     for i, e in pairs(buttons) do
  317.         if i ~= "Moving" and input.KeyCode == Enum.KeyCode[i] then
  318.             buttons[i] = true
  319.             buttons.Moving = true
  320.         end
  321.     end
  322. end)
  323.  
  324. game:GetService("UserInputService").InputEnded:connect(function (input, GPE)
  325.     if GPE then return end
  326.     local a = false
  327.     for i, e in pairs(buttons) do
  328.         if i ~= "Moving" then
  329.             if input.KeyCode == Enum.KeyCode[i] then
  330.                 buttons[i] = false
  331.             end
  332.             if buttons[i] then a = true end
  333.         end
  334.     end
  335.     buttons.Moving = a
  336. end)
  337.  
  338. local setVec = function (vec)
  339.     return vec * (speed / vec.Magnitude)
  340. end
  341.  
  342. game:GetService("RunService").Heartbeat:connect(function (step) -- The actual fly function, called every frame
  343.     if flying and c and c.PrimaryPart then
  344.         local p = c.PrimaryPart.Position
  345.         local cf = cam.CFrame
  346.         local ax, ay, az = cf:toEulerAnglesXYZ()
  347.         c:SetPrimaryPartCFrame(CFrame.new(p.x, p.y, p.z) * CFrame.Angles(ax, ay, az))
  348.         if buttons.Moving then
  349.             local t = Vector3.new()
  350.             if buttons.W then t = t + (setVec(cf.lookVector)) end
  351.             if buttons.S then t = t - (setVec(cf.lookVector)) end
  352.             if buttons.A then t = t - (setVec(cf.rightVector)) end
  353.             if buttons.D then t = t + (setVec(cf.rightVector)) end
  354.             c:TranslateBy(t * step)
  355.         end
  356.     end
  357. end)
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372. function spintogl()
  373.     if spintoggle == true then
  374.         spintoggle = false
  375.         spin.Text = "Crazy Spin: OFF"
  376.     else
  377.         spintoggle = true
  378.         spin.Text = "Crazy Spin: ON"
  379.         local bodyang = Instance.new('BodyAngularVelocity',game.Players.LocalPlayer.Character.PrimaryPart)
  380.         bodyang.AngularVelocity = Vector3.new(90,999,0)
  381.         bodyang.MaxTorque = Vector3.new(60000,100,3000)
  382.         bodyang.P = 5000000
  383.         repeat
  384.             wait(0.001)
  385.         until spintoggle == false
  386.         bodyang:Destroy()
  387.     end
  388. end
  389. spin.MouseButton1Click:connect(spintogl)
  390.  
  391.  
  392. function flytogl()
  393.     if flytoggle == true then
  394.         flytoggle = false
  395.         fly.Text = "Fly: OFF"
  396.     else
  397.         flytoggle = true
  398.         fly.Text = "Fly: ON"
  399.         startFly()
  400.         repeat
  401.             wait(0.001)
  402.         until flytoggle == false
  403.         endFly()
  404.     end
  405. end
  406. fly.MouseButton1Click:connect(flytogl)
  407.  
  408.  
  409.  
  410. function opctogl()
  411.     if scg.Enabled == true then
  412.         scg.Enabled = false
  413.         oc.Text = "Open"
  414.     else
  415.         scg.Enabled = true
  416.         oc.Text = "Close"
  417.     end
  418. end
  419. oc.MouseButton1Click:connect(opctogl)
  420. function telep()
  421.     game.Players.LocalPlayer.Character:MoveTo(game.Players:FindFirstChild(plr.Text).Character.PrimaryPart.Position)
  422. end
  423. tpto.MouseButton1Click:connect(telep)
  424.  
  425.  
  426. function camtogl()
  427.     if cameratoggle == false then
  428.         cameratoggle = true
  429.         game.Workspace.CurrentCamera.CameraType = "Follow"
  430.         seethr.Text = "See-Through: ON"
  431.     else
  432.         cameratoggle = false
  433.         game.Workspace.CurrentCamera.CameraType = "Custom"
  434.         seethr.Text = "See-Through: OFF"
  435.     end
  436. end
  437. seethr.MouseButton1Click:connect(camtogl)
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444. function wsp()
  445.     if wsmode ~= 5 then
  446.         wsmode = wsmode + 1
  447.     else
  448.         wsmode = 1
  449.     end
  450.     if wsmode == 1 then
  451.         ws.Text = "WalkSpeed: Normal"
  452.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  453.     end
  454.     if wsmode == 2 then
  455.         ws.Text = "WalkSpeed: Fast"
  456.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 32
  457.     end
  458.     if wsmode == 3 then
  459.         ws.Text = "WalkSpeed: FASTER"
  460.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 70
  461.     end
  462.     if wsmode == 4 then
  463.         ws.Text = "WalkSpeed: EXTREME"
  464.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
  465.     end
  466.     if wsmode == 5 then
  467.         ws.Text = "WalkSpeed: The Speed of Light"
  468.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 4357234785243
  469.     end
  470. end
  471. ws.MouseButton1Click:connect(wsp)
  472.  
  473.  
  474.  
  475.  
  476.  
  477. function jpp()
  478.     if jpmode ~= 5 then
  479.         jpmode = jpmode + 1
  480.     else
  481.         jpmode = 1
  482.     end
  483.     if jpmode == 1 then
  484.         jp.Text = "JumpPower: Normal"
  485.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  486.     end
  487.     if jpmode == 2 then
  488.         jp.Text = "JumpPower: Trampoline"
  489.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  490.     end
  491.     if jpmode == 3 then
  492.         jp.Text = "JumpPower: Big Trampoline"
  493.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 200
  494.     end
  495.     if jpmode == 4 then
  496.         jp.Text = "JumpPower: Bigger Trampoline"
  497.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 400
  498.     end
  499.     if jpmode == 5 then
  500.         jp.Text = "JumpPower: The Speed of Light"
  501.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 80000
  502.     end
  503. end
  504. jp.MouseButton1Click:connect(jpp)
  505.  
  506. function spawnblock()
  507.     if gothrough == false then
  508.         gothrough = true
  509.         sb.Text = "Noclip"
  510.         local gc = game.Players.LocalPlayer.Character:GetChildren()
  511.         for i = 1,#gc,1 do
  512.             if (gc[i].ClassName == "Part") or (gc[i].ClassName == "MeshPart") then
  513.             gc[i].CollisionGroupId = 29
  514.             end
  515.         end
  516.         game:service("RunService").Stepped:wait()
  517.     else
  518.         gothrough = false
  519.         sb.Text = "Noclip"
  520.         local gc = game.Players.LocalPlayer.Character:GetChildren()
  521.         for i = 1,#gc,1 do
  522.             if (gc[i].ClassName == "Part") or (gc[i].ClassName == "MeshPart") then
  523.             gc[i].CollisionGroupId = 1
  524.             game:service("RunService").Stepped:wait()
  525.             end
  526.         end
  527.     end
  528. end
  529. sb.MouseButton1Click:connect(spawnblock)
  530. function looptelep()
  531.     if lotptog == false then
  532.         lotptog = true
  533.         lotp.Text = "Loop-Teleport: ON"
  534.         repeat
  535.             game.Players.LocalPlayer.Character:MoveTo(game.Players:FindFirstChild(plr.Text).Character.PrimaryPart.Position)
  536.             wait(0.001)
  537.         until lotptog == false
  538.     else
  539.         lotptog = false
  540.         lotp.Text = "Loop-Teleport: OFF"
  541.     end
  542. end
  543. lotp.MouseButton1Click:connect(looptelep)
  544.  
  545.  
  546. function minimi()
  547.     scg.Enabled = false
  548.     oc.Text = "Open"
  549. end
  550. minim.MouseButton1Click:connect(minimi)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement