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