How do you change the players default size?

I need to change the players size to a bit larger for my obby.
How do I do that?

1 Like

Hey there!

I think this post is relative to yours:

Please, try to search for your issue before making a topic next time. :wink:

Have a nice day!

1 Like

To make some changes on the player’s character when they join/reset you have to use the CharacterAdded event: Player | Documentation - Roblox Creator Hub

Here is a script that does exactly what you need:

local scale = 2

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(character)
		local humanoid = character:WaitForChild('Humanoid')
		humanoid:WaitForChild('BodyDepthScale').Value = scale
		humanoid:WaitForChild('BodyHeightScale').Value = scale
		humanoid:WaitForChild('BodyWidthScale').Value = scale
		humanoid:WaitForChild('HeadScale').Value = scale
	end)
end)

Have a nice day!

2 Likes

there is actually IntValues in the humanoid of a character and these values change the size of a character so u can use the script of @polarisprog to change the character size