• How do I change player models?
    5 replies, posted
I'm stumped on why this doesnt work. Im trying to change my player model but nothing happens. I dont get any errors. Can anyone help me? [CODE]ply:SetModel( "models/player/Group01/male_08.mdl" )[/CODE]
i have no idea that is the right code so it wouldn't have anything to do with the SetModel
[QUOTE=npd1124;44386070]i have no idea that is the right code so it wouldn't have anything to do with the SetModel[/QUOTE] Do I need to add a function saying to render the player again?
Where is that code being called from? It has to be server-side for everyone to see.
[QUOTE=BolONYz;44386131]Do I need to add a function saying to render the player again?[/QUOTE] like rejax says what file is it being called from
[code]function PlayerSetModel( ply ) ply:SetModel( "models/player/Group01/male_08.mdl" ) end hook.Add( "PlayerSpawn", "PlayerSetModel", PlayerSetModel ) [/code] Run this serverside.
Sorry, you need to Log In to post a reply to this thread.