Advertisement
PersonsadminTeam

Phantom Forces scripts

Apr 10th, 2017
4,861
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.95 KB | None | 0 0
  1. Big head\
  2. for i,player in pairs(game:GetService('Players'):GetPlayers()) do
  3. if player.TeamColor ~= game:GetService('Players').LocalPlayer.TeamColor then
  4. local weld = Instance.new('Weld',player.Character.Torso)
  5. local part = Instance.new('Part',player.Character)
  6. part.Size = Vector3.new(150,150,150)
  7. part.Material = "Neon"
  8. part.BrickColor = BrickColor.new('Really red')
  9. part.CFrame = player.Character.Torso.CFrame
  10. part.CanCollide = false
  11. part.Transparency = 0 -- Set this to 0 if you want to see gigantic red targets --
  12. weld.C0 = player.Character.Torso.CFrame:inverse()
  13. weld.Part0 = player.Character.Torso
  14. weld.C1 = part.CFrame:inverse()
  15. weld.Part1 = part
  16. end
  17. end
  18.  
  19.  
  20.  
  21.  
  22. Speed
  23. game.Workspace.NAMEHERE.Humanoid:Remove();
  24. wait (2)
  25. Instance.new("Humanoid", game.Players.NAMEHERE.Character)
  26. game.Workspace.NAMEHERE.Humanoid.WalkSpeed = 200 --Set This to the speed you want--
  27. game.Workspace.NAMEHERE.Humanoid.JumpPower = 200 --Set This to the power you want--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement