https://vgy.me/rMWFJW.jpg
When i open thirdperson in my server it look like that how can i fix it ?
Shouldn't you be asking the guy that created the script you're using?
How are we supposed to help if we have ONE picture as info? Some code? some server info? anything?
if CLIENT then
local on = false
function togglethirdperson()
on = not on
end
net.Receive("sv_togglethirdperson")
function CalcThirdperson(ply, pos, angles, fov)
if on then
local view = {}
view.origin = pos-(angles:Forward()*100)
view.angles = angles
view.fov = fov
return view
end
end
hook.Add("CalcView", "CalcThirdperson", CalcThirdperson)
hook.Add("ShouldDrawLocalPlayer", "MyHax ShouldDrawLocalPlayer", function(ply)
if on then
return true
end
end)
concommand.Add("togglethirdperson", togglethirdperson)
local lastf1 = false
hook.Add( "Tick", "CheckPlayerKey", function()
if (input.IsKeyDown(KEY_F1) and lastf1 == false) then
togglethirdperson()
lastf1 = true
timer.Simple(0.1,function()
lastf1 = false
end)
end
end )
end
You right sorry
Remove Legs addon
Sorry, you need to Log In to post a reply to this thread.