• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved What is wrong...

owned

Excellent OT User
Joined
Nov 9, 2008
Messages
2,001
Solutions
3
Reaction score
558
Location
New York
I can't figure out why this continues to teleport me...

Code:
local function vortexteleport(pos)
local list = getSpectators(pos, 3, 3)
    if (list) then
for i = 1, #list do
    if list[i] ~= cid then
    doTeleportThing(list[i], pos)
        end
    end
end
return true
end
 
Last edited:
Back
Top