Dark_EccentricYT

Untitled

Aug 12th, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. --https://www.roblox.com/games/625364452/Nerf-FPS-2017-OPEN-ALPHA
  2.  
  3. _G.HeadSize = 50
  4. _G.HeadOffset = 25
  5. _G.FEnabled = true
  6. game:service'RunService'.Stepped:connect(function()
  7. if _G.FEnabled then
  8. for i,v in pairs(game:service'Players':GetPlayers()) do
  9. if v.TeamColor ~= game:service'Players'.LocalPlayer.TeamColor then
  10. --if v.Name ~= game:service'Players'.LocalPlayer.Name then
  11. pcall(function()
  12. pcall(function()v.Character.Head.Mesh:Destroy() end)
  13. v.Character.Head.CanCollide = false
  14. v.Character.Head.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  15. v.Character.Head.CFrame = v.Character.Torso.CFrame * CFrame.new(0,_G.HeadOffset,0)
  16. end)
  17. --end
  18. end
  19. end
  20. end
  21. end)
Add Comment
Please, Sign In to add comment