Griffew

Big Head

Oct 18th, 2021 (edited)
734
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.92 KB | None | 0 0
  1. for i,v in pairs(game.Players:GetChildren()) do
  2.     if v.Name ~= game:service'Players'.LocalPlayer.Name then
  3.         pcall(function()
  4.             v.Character.HumanoidRootPart.Size = Vector3.new(7,7,7)
  5.             v.Character.HumanoidRootPart.Transparency = 0.7
  6.             v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  7.             v.Character.HumanoidRootPart.Material = "Neon"
  8.             v.Character.HumanoidRootPart.CanCollide = false
  9.         end)
  10.     end
  11. end
  12.  
  13. game.Players.CharacterAdded:connect(function(objPlayer)
  14.     if objPlayer.Name ~= game:service'Players'.LocalPlayer.Name then
  15.         pcall(function()
  16.             objPlayer.Character.HumanoidRootPart.Size = Vector3.new(7,7,7)
  17.             objPlayer.Character.HumanoidRootPart.Transparency = 0.7
  18.             objPlayer.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  19.             objPlayer.Character.HumanoidRootPart.Material = "Neon"
  20.             objPlayer.Character.HumanoidRootPart.CanCollide = false
  21.         end)
  22.     end
  23. end)
Add Comment
Please, Sign In to add comment