Advertisement
Kitiko

Phantom Forces Aimbot Script

Apr 16th, 2017
26,595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. -- Make sure to join our Discord for the newest exploits, for games, and roblox! https://discord.gg/jbfYfKa
  2. -- Also make sure to check out our youtube for roblox exploits! https://www.youtube.com/c/KiruzaExploits
  3.  
  4. for i,player in pairs(game:GetService('Players'):GetPlayers()) do
  5. if player.TeamColor ~= game:GetService('Players').LocalPlayer.TeamColor then
  6. local weld = Instance.new('Weld',player.Character.Torso)
  7. local part = Instance.new('Part',player.Character)
  8. part.Size = Vector3.new(2,2,2)
  9. part.Material = "Neon"
  10. part.Transparency = .7
  11. part.Anchored = true
  12. part.BrickColor = BrickColor.new('Really Green')
  13. part.CFrame = player.Character.Torso.CFrame - Vector3.new(2,12,2)
  14. part.CanCollide = false
  15. weld.C0 = player.Character.Torso.CFrame:inverse()
  16. weld.Part0 = player.Character.Torso
  17. weld.C1 = part.CFrame:inverse()
  18. weld.Part1 = part
  19. spawn(function()
  20. while wait() do
  21. part.CFrame = player.Character.Torso.CFrame - Vector3.new(3,12,3)
  22. end
  23. end)
  24. end
  25. end
  26. spawn(function()
  27. while wait() do
  28. for i, v in pairs(game:GetService('Players'):GetChildren()) do
  29. if v.Name ~= game.Players.LocalPlayer.Name then
  30. if v.Character:FindFirstChild("Torso") then
  31. if v.Character.HumanoidRootPart then
  32. v.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character:FindFirstChild("Torso").CFrame + Vector3.new(0,12,0)
  33. end
  34. end
  35. end
  36. end
  37. end
  38. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement