How do I remove the black/white outline of some entities. I.E. Balloons.
remove the color tags in the SENTs init.lua?
I'm using the SExtender... any idea?
[lua]
hook.Add("OnEntityCreated","meh",function(e)
if e.DrawEntityOutline then
e.DrawEntityOutline = function() end
end
end)
[/lua]
Goes in lua/autorun/client/somefile.lua
Sorry, you need to Log In to post a reply to this thread.