I made a script for Sandbox RP, ( Stupid, I know ) I made it so it strips all the weapons and gives the player weapons on spawn.
hook.Add( "PlayerSpawn", "Rofl P90_Man's Hook :D", function( ply )
ply:StripWeapons()
ply:Give( "weapon_physgun" )
ply:Give( "weapon_physcannon" )
ply:Give( "gmod_tool" )
ply:Give( "rcs_knife" )
ply:Give( "tf2_combo_fists" )
end )
Now I need to know WHY it isn’t working… I ain’t getting the weapons, or losing my others. AND there are NO Errors, when I run it manually so… Also, what is a hook? I’ve been wondering. (Someone told me I needed a hook. So they did it for me.)