Advertisement
Guest User

ULTRA PF AIMBOT! [SUBSCRIBE FOR IT TO WORK!]

a guest
Dec 7th, 2016
19,753
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. _G.TeleportTeammates=false -- This Aimbot Was Made by PrZm Auxcite
  2.  
  3. ~~[YOU MUST BE SUBSCRIBED + HAVE POST NOTIFICATIONS ON!]~~
  4.  
  5. local key = "t"
  6. local key_that_sets_position="="
  7. local LocalPlayer = game:service("Players").LocalPlayer
  8. local running = false
  9. local mouse = LocalPlayer:GetMouse()
  10.  
  11. _G.TeleportOffset=Vector3.new(0,5,0)
  12. _G.TeleportPosition=Vector3.new(0,0,0)
  13.  
  14. local keydown = mouse.KeyDown:connect(function(k)
  15. if (k == key) then
  16. running = not running
  17. print("[FE-TP] FilterTP ".. (running and "activated." or "deactivated."))
  18. end
  19. end)
  20.  
  21. local setposition = mouse.KeyDown:connect(function(pressed_key)
  22. if (pressed_key==key_that_sets_position) then
  23. _G.TeleportPosition=mouse.Hit.p+_G.TeleportOffset
  24. print("[FE-TP] Coordinates updated to: " ..tostring(_G.TeleportPosition))
  25. end
  26. end)
  27.  
  28. game:GetService("RunService"):BindToRenderStep("Camera", Enum.RenderPriority.Camera.Value, function()
  29. if running==false then return end
  30. for i,v in pairs(game:service("Players"):GetChildren()) do
  31. if(v ~= LocalPlayer and v.Character and (v.TeamColor ~= LocalPlayer.TeamColor or _G.TeleportTeammates)) then
  32. if _G.ClipCharacters == false then
  33. v.Character:MoveTo(_G.TeleportPosition)
  34. else
  35. v.Character.HumanoidRootPart.CFrame=CFrame.new(_G.TeleportPosition)
  36. end
  37. end
  38. end
  39. end)
  40.  
  41. _G.FETP_disconnect = function()
  42. running = false;
  43. keydown:disconnect()
  44. _G.FETP_disconnect = nil
  45. warn"[FE-TP] globally deactivated."
  46. end
  47.  
  48. print"[FE-TP] loaded."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement