Advertisement
neonu

SSES

Oct 20th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.33 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/xN6LGgDv", true))()
  2. local example = library:CreateWindow({
  3. text = "FE Stuff"
  4. })
  5.  
  6. example:AddButton("Check FE/FD in Dev Console", function()
  7. if game.Workspace.FilteringEnabled == false then
  8. print("Filtering is disabled!")
  9. end
  10. if game.Workspace.FilteringEnabled == true then
  11. print("Filtering is enabled!")
  12. end;
  13. end)
  14.  
  15. example:AddLabel("--------------");
  16.  
  17. example:AddBox("FE WalkSpeed", function(object, focus)
  18. if focus then
  19. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(object.Text) or 16
  20. end
  21. end)
  22.  
  23. example:AddToggle("FE Super Jump", function(state)
  24. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = (state and 100 or 50)
  25. end)
  26.  
  27. example:AddLabel("--------------");
  28.  
  29. example:AddButton("Respawn", function()
  30. game:GetService("Players").LocalPlayer.Character.Humanoid.Health = 0;
  31. end)
  32.  
  33. example:AddButton("Respawn v2", function()
  34. loadstring(game:HttpGet(('https://pastebin.com/raw/SiqScdtW'),true))();
  35. end)
  36.  
  37. example:AddButton("Respawn v3", function()
  38. Character = game:GetService("Players").LocalPlayer.Character
  39. respawn = 0
  40. Character.Head.Died:Remove()
  41. Character:FindFirstChild("Humanoid").BreakJointsOnDeath = false
  42. Character:FindFirstChild("Humanoid").Health = respawn
  43. end)
  44.  
  45. example:AddLabel("--------------");
  46.  
  47. example:AddButton("FE Fly - E to toggle", function()
  48. loadstring(game:HttpGet(('https://pastebin.com/raw/RkUtdYb0'),true))();
  49. end)
  50.  
  51. example:AddButton("FE Click TP", function()
  52. mouse = game.Players.LocalPlayer:GetMouse()
  53. tool = Instance.new("Tool")
  54. tool.RequiresHandle = false
  55. tool.Name = "Click Teleport"
  56. tool.Activated:connect(function()
  57. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  58. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  59. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  60. end)
  61. tool.Parent = game.Players.LocalPlayer.Backpack;
  62. end)
  63.  
  64. example:AddButton("FE Noclip - Q to toggle", function()
  65.  
  66. noclip = false
  67. game:GetService('RunService').Stepped:connect(function()
  68. if noclip then
  69. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  70. end
  71. end)
  72. plr = game.Players.LocalPlayer
  73. mouse = plr:GetMouse()
  74. mouse.KeyDown:connect(function(key)
  75.  
  76. if key == "q" then
  77. noclip = not noclip
  78. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  79. end
  80. end)
  81. print('Loaded')
  82. print('Press "q" to noclip');
  83. end)
  84.  
  85. example:AddButton("FE Double Jump", function()
  86. game.Players.LocalPlayer.Character.Humanoid:Clone().Parent = game.Players.LocalPlayer.Character;
  87. end)
  88.  
  89. example:AddButton("FE Inf Jump - F to toggle", function()
  90. _G.infinjump = true
  91.  
  92. local Player = game:GetService("Players").LocalPlayer
  93. local Mouse = Player:GetMouse()
  94. Mouse.KeyDown:connect(function(k)
  95. if _G.infinjump then
  96. if k:byte() == 32 then
  97. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  98. Humanoid:ChangeState("Jumping")
  99. wait(0.1)
  100. Humanoid:ChangeState("Seated")
  101. end
  102. end
  103. end)
  104.  
  105. local Player = game:GetService("Players").LocalPlayer
  106. local Mouse = Player:GetMouse()
  107. Mouse.KeyDown:connect(function(k)
  108. k = k:lower()
  109. if k == "f" then
  110. if _G.infinjump == true then
  111. _G.infinjump = false
  112. else
  113. _G.infinjump = true
  114. end
  115. end
  116. end)
  117. ;
  118. end)
  119.  
  120. example:AddButton("FE Invisible", function()
  121. loadstring(game:HttpGet(('https://pastebin.com/raw/wPdrK17z'),true))();
  122. end)
  123.  
  124. example:AddButton("FE Invisible Fling", function()
  125. loadstring(game:HttpGet(('https://pastebin.com/raw/AB0NyaGS'),true))();
  126. end)
  127.  
  128. example:AddButton("FE Penis", function()
  129. loadstring(game:HttpGet(('https://pastebin.com/raw/VUpi8C4c'),true))();
  130. end)
  131.  
  132. example:AddButton("FE Hug Kill", function()
  133. loadstring(game:HttpGet(('https://pastebin.com/raw/P41zqe6D'),true))();
  134. end)
  135.  
  136. example:AddButton("FE Steal Tools", function()
  137. loadstring(game:HttpGet(('https://pastebin.com/raw/auMYkuKf'),true))();
  138. end)
  139.  
  140. example:AddButton("FE Blink", function()
  141. loadstring(game:HttpGet(('https://pastebin.com/raw/eZLTXfNP'),true))();
  142. end)
  143.  
  144. example:AddButton("FE Chat Troll", function()
  145. local Action = game.Players:GetPlayers()
  146. for i = 1,#Action do
  147. Action[i].Chatted:connect(function(Message)
  148. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("".."["..Action[i].Name.."]".." "..Message, "All")
  149. end)
  150. end;
  151. end)
  152.  
  153. example:AddButton("FE Creeper [R6]", function()
  154. local lol = game:GetService('Players').LocalPlayer
  155. lol.Character["Head"].Mesh:Destroy()
  156. lol.Character["Left Arm"]:Destroy()
  157. lol.Character["Right Arm"]:Destroy()
  158.  
  159. for i,v in pairs(game:GetService('Players').LocalPlayer.Character:GetDescendants()) do
  160. if v:IsA'Hat' or v:IsA'Accessory' then
  161. v.Parent = game:GetService'Workspace'
  162. end
  163. end
  164.  
  165. local fuck = game:GetService('Players').LocalPlayer
  166. if game.Players.LocalPlayer == fuck then
  167. print("succesfully creeped u! enjoy!")
  168. end;
  169. end)
  170.  
  171. example:AddButton("FE Creeper [R15]", function()
  172. local lol = game:GetService('Players').LocalPlayer
  173. lol.Character["Head"].Mesh:Destroy()
  174. lol.Character["LeftUpperArm"]:Destroy()
  175. lol.Character["RightUpperArm"]:Destroy()
  176.  
  177. for i,v in pairs(game:GetService('Players').LocalPlayer.Character:GetDescendants()) do
  178. if v:IsA'Hat' or v:IsA'Accessory' then
  179. v.Parent = game:GetService'Workspace'
  180. end
  181. end
  182.  
  183. local fuck = game:GetService('Players').LocalPlayer
  184. if game.Players.LocalPlayer == fuck then
  185. print("succesfully creeped u! enjoy!")
  186. end;
  187. end)
  188.  
  189. example:AddButton("FE OOF Audio Spam", function()
  190. while wait() do
  191. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  192. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  193. for _,x in pairs(v.Character.Head:GetChildren()) do
  194. if x:IsA'Sound' then x.Playing = true end
  195. end
  196. end
  197. end
  198. end
  199. while wait() do
  200. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  201. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  202. for _,x in pairs(v.Character.Head:GetChildren()) do
  203. if x:IsA'Sound' then x.Playing = false end
  204. end
  205. end
  206. end
  207. end;
  208. end)
  209.  
  210. example:AddButton("FE Tool Replication", function()
  211. loadstring(game:HttpGet("https://pastebin.com/raw/9CkmhJj2", true))();
  212. end)
  213.  
  214.  
  215.  
  216. local example = library:CreateWindow({
  217. text = "Extra"
  218. })
  219.  
  220. example:AddButton("FE Drop Hats", function()
  221. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  222. if (key=="=") then
  223. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  224. if (v:IsA("Accessory")) then
  225. v.Parent = workspace
  226. end
  227. end
  228. end
  229. end);
  230. end)
  231.  
  232. example:AddButton("FE Enable Iventory", function()
  233. game.StarterGui:SetCoreGuiEnabled(2, true);
  234. end)
  235.  
  236. example:AddButton("FE Hatspin", function()
  237. local obese = game:GetService('Players')
  238. for i,v in pairs(obese.LocalPlayer.Character:GetChildren()) do
  239. if v.ClassName == "Accessory" then
  240. local stg = v.Handle:FindFirstChildOfClass("BodyForce")
  241. if stg == nil then
  242. local a = Instance.new("BodyPosition")
  243. local b = Instance.new("BodyAngularVelocity")
  244. a.Parent = v.Handle
  245. b.Parent = v.Handle
  246. v.Handle.AccessoryWeld:Destroy()
  247. b.AngularVelocity = Vector3.new(0,100,0)
  248. b.MaxTorque = Vector3.new(0,200,0)
  249. a.P = 30000
  250. a.D = 50
  251. game:GetService('RunService').Stepped:connect(function()
  252. a.Position = obese.LocalPlayer.Character.Head.Position
  253. end)
  254. end
  255. end
  256. end;
  257. end)
  258.  
  259. example:AddButton("FE Autochat Bot", function()
  260.  
  261. local botchats = {
  262. "lol i am gay",
  263. "pls pee in bums",
  264. "ok",
  265. "v3rm is bum bum",
  266. "what the fox say?",
  267. "beep boop",
  268. "i am slowly spaming",
  269. "lol pee pee"
  270. }
  271.  
  272. for i=1,10 do -- Change 10 to how many times you want to loop
  273. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(botchats[math.random(1, #botchats)], "All")
  274. wait(4) -- Change 4 to how long you want to wait between messages
  275. end;
  276. end)
  277.  
  278.  
  279. local example = library:CreateWindow({
  280. text = "FE Admin"
  281. })
  282.  
  283. example:AddLabel("FE Admin");
  284.  
  285. local dropdown;
  286. dropdown = example:AddDropdown({'---','Infinite Yield', 'Reviz Admin', 'Close'}, function(a)
  287. if a == 'Reviz Admin' then
  288. loadstring(game:HttpGet(('https://pastebin.com/raw/6q783AuF'),true))();
  289. end
  290. if a == 'Infinite Yield' then
  291. loadstring(game:HttpGet(('https://pastebin.com/raw/tzTXmYf2'),true))();
  292. end
  293. end)
  294.  
  295.  
  296.  
  297.  
  298. local credits = library:CreateWindow({text='Credits'})
  299. credits:AddLabel("Credits\nneonu: ok\nwally: everything\nscripters: scripting scripts")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement