setclipboard("https://discord.gg/TR3quUFgT6") local players = game:GetService("Players") local runservice = game:GetService("RunService") local replicatedstorage = game:GetService("ReplicatedStorage") local player = players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local root = character:WaitForChild("HumanoidRootPart") local targetPart = workspace.Zones.WinZone.MoveToZone local respawnRemote = replicatedstorage :WaitForChild("Remotes") :WaitForChild("Functions") :WaitForChild("Respawn") local enabled = false local connection local rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local window = rayfield:CreateWindow({ Name = "auto win", LoadingTitle = "auto win", LoadingSubtitle = "rayfield ui", ConfigurationSaving = { Enabled = false } }) local tab = window:CreateTab("main", 4483362458) tab:CreateToggle({ Name = "auto win", CurrentValue = false, Callback = function(value) enabled = value if enabled then connection = runservice.RenderStepped:Connect(function() if root and targetPart then root.CFrame = targetPart.CFrame end respawnRemote:InvokeServer() end) else if connection then connection:Disconnect() connection = nil end end end })