• Deathrun Death Model
    6 replies, posted
How do you change the deaths model for deathrun?
i cant find that location lol
Which deathrun are you using? Can't really help you unless you specify.
[code]local rModels = {} for i = 1, 8 do rModels[#rModels+1] = "models/player/group01/male_0"..i..".mdl" end[/code] Seriously? It's in init.lua..
[QUOTE=code_gs;42888534][code]local rModels = {} for i = 1, 8 do rModels[#rModels+1] = "models/player/group01/male_0"..i..".mdl" end[/code] Seriously? It's in init.lua..[/QUOTE] Isn't that for the runners though?
That's for everyone. If you want to change the death model, put this in lua/autorun/server: [code]hook.Add( "ChangePlayerModel", "Death Model", function( ply ) if ply:Team() == TEAM_DEATH then return "path/to/model.mdl" end end )[/code]
Sorry, you need to Log In to post a reply to this thread.