PapierLP

Roblox FE Script

Aug 26th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.16 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/preztel/AzureLibrary/master/uilib.lua", true))()
  2.  
  3.  
  4. local Misc = Library:CreateTab("Misc","Mikes Geheime Cheat Sachen", true)
  5. local Credits = Library:CreateTab("Credits","Mikes Geheime Cheat Sachen", true)
  6.  
  7. --XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  8. Misc:CreateButton("NoClip [Press E]", function()
  9. noclip = false
  10. game:GetService('RunService').Stepped:connect(function()
  11. if noclip then
  12. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  13. end
  14. end)
  15. plr = game.Players.LocalPlayer
  16. mouse = plr:GetMouse()
  17. mouse.KeyDown:connect(function(key)
  18.  
  19. if key == "e" then
  20. noclip = not noclip
  21. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  22. end
  23. end)
  24. end)
  25. Misc:CreateButton("Inf Jump", function()
  26. local Player = game:GetService'Players'.LocalPlayer;
  27. local UIS = game:GetService'UserInputService';
  28.  
  29. _G.JumpHeight = 50;
  30.  
  31. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  32.  
  33. UIS.InputBegan:connect(function(UserInput)
  34.     if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  35.         Action(Player.Character.Humanoid, function(self)
  36.             if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  37.                 Action(self.Parent.HumanoidRootPart, function(self)
  38.                     self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  39.                 end)
  40.             end
  41.         end)
  42.     end
  43. end)
  44. end)
  45.  
  46. Misc:CreateButton("Strg + Click +TP", function(arg)
  47. local Imput = game:GetService("UserInputService")
  48. local Plr = game.Players.LocalPlayer
  49. local Mouse = Plr:GetMouse()
  50.  
  51. function To(position)
  52.     local Chr = Plr.Character
  53.     if Chr ~= nil then
  54.         Chr:MoveTo(position)
  55.     end
  56. end
  57.  
  58. Imput.InputBegan:Connect(function(input)
  59.     if input.UserInputType == Enum.UserInputType.MouseButton1 and Imput:IsKeyDown(Enum.KeyCode.LeftControl) then
  60.         To(Mouse.Hit.p)
  61.     end
  62. end)
  63. end)
  64.  
  65. Misc:CreateToggle("Speed 100", function(arg)
  66.     if arg then
  67. _G.Speed = true
  68.         while wait() and _G.Speed do
  69.             game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  70.         end
  71.     else
  72.         _G.Speed = false
  73.            game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20
  74.          end
  75. end)
  76.  
  77.  
  78.  
  79. Credits:CreateButton("Mein Discords", function()
  80. game:GetService("CoreGui").uiui:nothing()
  81. end)
  82. Credits:CreateButton("https://discord.gg/w2Q97vw", function()
  83. game:GetService("CoreGui").uiui:nothing()
  84. end)
  85. Credits:CreateButton("Owner", function()
  86. game:GetService("CoreGui").uiui:nothing()
  87. end)
  88. Credits:CreateButton("PapierLP#2613", function()
  89. game:GetService("CoreGui").uiui:nothing()
  90. end)
  91. Credits:CreateButton("Destroy Gui", function()
  92. game:GetService("CoreGui").uiui:Destroy()
  93. end)
  94. --ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
  95. --| Anti AFK |
  96.     local Virtual = game:service'VirtualUser'
  97.     game:service'Players'.LocalPlayer.Idled:connect(function()
  98.         Virtual:CaptureController()
  99.         Virtual:ClickButton2(Vector2.new())
  100.         wait(2)
  101.     end)
Add Comment
Please, Sign In to add comment