Im using a script that teleports you to another game when you touch it. except when it teleports, it gives me this error. i think its the script thats causing the issue:
its not restricted in any way. and yes, i made the place on the assets manager.
btw it waits 58 seconds because it will wait for a cutscene to finish.
Is the place where you teleport published? (Also for Touched, you should make a debounce)
1 Like
yep, its published. but i dont know that much coding to make a debounce.
Place these things at the right order
-- variable
local debounce = false
-- before waiting the 58 seconds
if debounce then return end
-- after waiting the 58 seconds
debounce = true
-- after Teleport
wait(10) -- change this to how many you like
debounce = false
WAIT, I made a mistake, the
debounce = true
comes right after the if statement
Sorry about that
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.