The_Banana

1

Mar 17th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. local InfiniteJumpEnabled = true
  2. game:GetService("UserInputService").JumpRequest:connect(function()
  3. if InfiniteJumpEnabled then
  4. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  5. end
  6. end)
  7.  
  8. local vu = game:GetService("VirtualUser")
  9. game:GetService("Players").LocalPlayer.Idled:connect(function()
  10. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  11. wait(1)
  12. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  13.  
  14. game.StarterGui:SetCore("SendNotification", {
  15. Title = "Scp Fricker";
  16. Text = "Aimbot is Active!"; -- what the text says (ofc)
  17. Duration = 60;
  18. })
  19. _G.HeadSize = 20
  20. _G.Disabled = true
  21.  
  22. game:GetService('RunService').RenderStepped:connect(function()
  23. if _G.Disabled then
  24. for i,v in next, game:GetService('Players'):GetPlayers() do
  25. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  26. pcall(function()
  27. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  28. v.Character.HumanoidRootPart.Transparency = 0.7
  29. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  30. v.Character.HumanoidRootPart.Material = "Neon"
  31. v.Character.HumanoidRootPart.CanCollide = false
  32. end)
  33. end
  34. end
  35. end
  36. end)
Advertisement
Add Comment
Please, Sign In to add comment