Also how do I make a part teleport to you after 10 seconds?
Use the messaging service, Example :
local msg = game:GetService("MessagingService") local connection = msg:SubscribeAsync("topicName",function(mes) -- this will look for new posts print(mes) -- this will print the message received end) msg:PublishAsync("topicName","message here") -- this will publish a post