local Player = game.Players.LocalPlayer local function ModifyCharacter(Character) Character:WaitForChild("HumanoidRootPart") wait(0.1) Character.Head.MeshId = "http://www.roblox.com/asset/?id=134079402" Character.Head.Transparency = 1 Character.Head.face.Transparency = 1 Character.RightFoot.Transparency = 1 Character.RightLowerLeg.Transparency = 1 Character.RightUpperLeg.MeshId = "https://assetdelivery.roblox.com/v1/asset/?id=9598310133" Character.RightUpperLeg.TextureID = "https://www.roblox.com/asset/?id=902843398" end if Player.Character then ModifyCharacter(Player.Character) end Player.CharacterAdded:Connect(ModifyCharacter)