How can i change the standard scale of character?

Someone know how to change the scale of the player when he join in game, like the player starts with 1 scale but change the standard to 2?
This:

To This:

You could likely set this up with a script that updates the character scale to 2 whenever it is spawned. Try doing this with a server script:

game.Players.PlayerAdded:Connect(function(plr)
    plr.CharacterAdded:Connect(function(char)
        char:ScaleTo(2)
    end
end

Actually work but roblox does have a “keyword” to wait acessory load and then scale?

Look like this with the script:

try this:

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(char)
		plr.CharacterAppearanceLoaded:Wait()
		char:ScaleTo(2)
	end)
end)
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.