Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. for i,v in pairs (game.Players:GetChildren()) do
  2.  
  3. if v.Name ~= game.Players.LocalPlayer.Name then
  4.  
  5.  
  6. local mt = getrawmetatable(game)
  7. local old = mt.__index
  8. setreadonly(mt, false)
  9. mt.__index = newcclosure(function(tbl, idx)
  10.  
  11. if idx == "Size" and tbl == v.Character.HumanoidRootPart then
  12. return Vector3.new(0,0,0)
  13.  
  14. end
  15. return old(tbl, idx)
  16. end)
  17.  
  18. v.Character.HumanoidRootPart.Size = Vector3.new(50,50,50)
  19. v.Character.HumanoidRootPart.Transparency = 0.8
  20.  
  21.  
  22. end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement