RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"when you the block you will enter a random roblox game"
-- local script local part = script.Parent local function teleport(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then local randomGame = game.GamePass:GetRandomGame() player:LoadGameInstance(randomGame) end end part.Touched:Connect(teleport)