require "lib.moonloader"
require "lib.sampfuncs"
function lerp(start, target, speed)
return start + (target - start) * speed
end
function smoothTeleport(x, y, z)
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
local...