-- For hub loadstring(game:HttpGet("https://pastebin.com/raw/F8tg1aY2"))() -- For auto streak local Players = game:GetService("Players") local RunService = game:GetService("RunService") function autoTeleport(player) if player.Character then local humanoid = player.Character:FindFirstChild("Humanoid") if humanoid then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-405, 10010, 5000) end end end RunService.Heartbeat:Connect(function() for _, player in ipairs(Players:GetPlayers()) do autoTeleport(player) end end)