setclipboard("https://discord.gg/TR3quUFgT6") local players = game:GetService("Players") local workspace = game:GetService("Workspace") local replicatedstorage = game:GetService("ReplicatedStorage") local player = players.LocalPlayer local hrp = player.Character and player.Character:FindFirstChild("HumanoidRootPart") player.CharacterAdded:Connect(function(char) hrp = char:WaitForChild("HumanoidRootPart") end) local target_names = { "WinPart7V2", "WinPart8V2", "WinPart1", "WinPart2", "WinPart3", "WinPart4", "WinPart5", "WinPart6", } local function find_part(name) local p = workspace:FindFirstChild(name) if p and p:IsA("BasePart") then return p end for _, d in ipairs(workspace:GetDescendants()) do if d.Name == name and d:IsA("BasePart") then return d end end return nil end local rebirth_request = replicatedstorage:WaitForChild("RebirthRequest") local screen_gui = Instance.new("ScreenGui") screen_gui.Name = "CustomUI" screen_gui.ResetOnSpawn = false screen_gui.Parent = player:WaitForChild("PlayerGui") local main_frame = Instance.new("Frame") main_frame.Size = UDim2.new(0, 200, 0, 100) main_frame.Position = UDim2.new(0.05, 0, 0.1, 0) main_frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) main_frame.Active = true main_frame.Draggable = true main_frame.Parent = screen_gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundColor3 = Color3.fromRGB(20, 20, 20) title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.SourceSansBold title.Text = "rebirth thingy" title.TextSize = 18 title.Parent = main_frame local toggle_btn = Instance.new("TextButton") toggle_btn.Size = UDim2.new(1, -20, 0, 40) toggle_btn.Position = UDim2.new(0, 10, 0, 40) toggle_btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) toggle_btn.TextColor3 = Color3.fromRGB(255, 255, 255) toggle_btn.Font = Enum.Font.SourceSans toggle_btn.Text = "auto rebirth: OFF" toggle_btn.TextSize = 16 toggle_btn.Parent = main_frame local auto_rebirth = false toggle_btn.MouseButton1Click:Connect(function() auto_rebirth = not auto_rebirth if auto_rebirth then toggle_btn.Text = "auto rebirth: ON" toggle_btn.BackgroundColor3 = Color3.fromRGB(0, 170, 0) else toggle_btn.Text = "auto rebirth: OFF" toggle_btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) end end) task.spawn(function() while task.wait(0.1) do if hrp and hrp.Parent then for _, name in ipairs(target_names) do local part = find_part(name) if part then part.CanCollide = false part.CFrame = hrp.CFrame * CFrame.new(-2, -0.2, -2) end end end if auto_rebirth then rebirth_request:FireServer() end end end)