#WOW #REAL pKill
Here's a propkill script for you. Because people think it's private????
Figure out how to use it yourself, it's better than anything else ever coded on this site
credits 100% to mameshiba
Code:
local rearview = CreateClientConVar("mh_rearview", "0", false, false)
concommand.Add("mh_turn180", function() LocalPlayer():SetEyeAngles(LocalPlayer():EyeAngles()+Angle(0,180,0)) end)
hook.Add("CalcView", "tttrv", function(_,a,b,c)
if rearview:GetBool() then
b = b + Angle(0,180,0)
end
return GAMEMODE:CalcView(_,a,b,c)
end)
hook.Add("CreateMove", "tttbw", function(cmd)
if rearview:GetBool() then
cmd:SetForwardMove(-cmd:GetForwardMove())
cmd:SetSideMove(-cmd:GetSideMove())
cmd:SetUpMove(-cmd:GetUpMove())
end
end)
credits 100% to mameshiba
