Advertisement
mr2meows

protoall

Mar 11th, 2023 (edited)
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. for i,v in pairs(game.Players:GetPlayers()) do
  2. v.Character.Humanoid.HipHeight = 3.141592
  3. local gamingmesh = v.Character.Head.Mesh
  4. gamingmesh.MeshId = "rbxassetid://10010809816"
  5. gamingmesh.TextureId = "rbxassetid://10010810327"
  6. gamingmesh.Scale = Vector3.new(0.06286, 0.06286, 0.06286)
  7. gamingmesh.Offset = Vector3.new(0, -3, 2.5)
  8. for i,v in pairs(v.character:GetDescendants()) do
  9. if v:IsA("Part") then
  10. v.Transparency = 1
  11. elseif v:IsA("Decal") then
  12. v:Destroy()
  13. end
  14. if v.Name == "Head" then
  15. v.Transparency = 0
  16. end
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement