Hey, so I made a script that when a player clicks it will fire a remote event, and once the remote event is received in the server script service it’s supposed to increase your head size, however, I don’t know how to do this, can you help?
1 Like
In R15 avatars there are scaling values in the Humanoid, but in this case you would use HeadScale:
The script would then look like this (Change the remote event path)
game.ReplicatedStorage.RemoteEvent.OnServerEvent:Connect(function(player)
player.Character.Humanoid.HeadScale.Value = player.Character.Humanoid.HeadScale.Value + .5
end)
4 Likes
Thank you so much that helped ALOT!
1 Like
Yes thank you! i almost made the same topic. Thanks!
1 Like