Garry's Mod

Need help with lua (footstep sound)

Submitted by Praindom, , Thread ID: 192690

Thread Closed

RE: Need help with lua (footstep sound)

This post was last modified: 05-01-2021, 04:18 PM by 1jeuu
#2
use this: https://wiki.facepunch.com/gmod/Player:IsSprinting

hook.Add( "PlayerFootstep", "CustomFootstep", function( ply, pos, foot, sound, volume, rf )
if ply:IsSprinting() then
if ply:getDarkRPVar("job") == "Trooper" then
ply:EmitSound( "npc/metropolice/gear5.wav" ) -- Play the footsteps hunter is using
return true -- Don't allow default footsteps, or other addon footsteps
end
end
end )

Users browsing this thread: 4 Guest(s)