local players = game:GetService("Players") local player = players.LocalPlayer local wb = workspace:WaitForChild("WinGivingButtons") local hitbox = wb:GetChildren()[18]:WaitForChild("Hitbox") local root = nil if player.Character then root = player.Character:WaitForChild("HumanoidRootPart") end player.CharacterAdded:Connect(function(char) root = char:WaitForChild("HumanoidRootPart") end) while true do if root then root.CFrame = hitbox.CFrame+Vector3.new(0,3,0) end task.wait(3) end game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Started", Text = "Auto Win Farm", Icon = "rbxassetid://123663668456341" })