I'm not gonna flood the post with too much code but this is basically what i have
if myStatement == false then
hook.Remove("tellPlyToPlant")
end
hook.Add("HUDPaint", "tellPlyToPlant", function()
draw.SimpleText("Hold E to interact", "guideFont", ScrW() / 2, ScrH() / 2.5, Color(150,150,150,255),1,1)
end)
Basically the text draws but whenever my if statement occurs the text won't go away, appreciate any help!
You cant only give it the hooks unique name, you also have to give it the genral name
hook.Remove ("HUDPaint", "tellPlytoPlant")
Oh okay thanks
Sorry, you need to Log In to post a reply to this thread.