quick question i can down scale models but how to i down scale a player in a script trying to get him about 0.11 scale?
ive tryed scaling down the player in the tik file by placing "scale 0.11"
just under tiki but doesnt work.
Moderator: Moderators

you cannot notice a difference in the view of a sclaed down player they still see at a high level but their bodies are tiny. u can either try with 2 players or swithc to 3rd personkkcahdcakcyt wrote:I'm doing this for Multiplayer
for (local.z=$player.size; local.z > 0; local.z--)
{
$player[local.z] scale .5
}
except this doesn't seem to work.
Code: Select all
for (local.i=0; local.i <= $player.size; local.i++)
{ $player[local.i].scale = .5 }