local SG = Instance.new("ScreenGui") SG.Parent = game.Players.LocalPlayer.PlayerGui local F = Instance.new("Frame") F.Size = UDim2.new(0.2,0,0.1,0) F.Parent = SG F.Position = UDim2.new(0.4,0,0.65,0) local btn = Instance.new("TextButton") btn.Parent = F btn.Size = UDim2.new(1,0,1,0) btn.Text = "Enable" local On = false local RBT_F = F:Clone() RBT_F.Parent = F.Parent RBT_F.Position = RBT_F.Position - UDim2.new(0.02, 0,0.05,0) RBT_F.Size = RBT_F.Size - UDim2.new(0.10,0,0.05,0) local btn1 = RBT_F.TextButton btn1.Text = "Auto Rebirth" local ar = False btn1.MouseButton1Click:Connect(function() if not ar then ar = true btn1.BorderColor3 = Color3.new(0,255,0) else ar = false btn1.BorderColor3 = Color3.new(0,0,0) end --[[ task.spawn(function() while ar then task.wait(2) local Event = game:GetService("ReplicatedStorage").Events.RequestRebirth Event:InvokeServer() end end) ]] end) btn.MouseButton1Click:Connect(function() if not On then btn.Text = "Disable" On = true else btn.Text = "Enable" On = false end task.spawn(function() while On do task.wait(0.01) local Event = game:GetService("ReplicatedStorage").Events.AddTongue Event:FireServer() end end) local root = game.Players.LocalPlayer.Character.HumanoidRootPart task.spawn(function() while On do task.wait(0.01) root.CFrame = CFrame.new(math.random(-5362,-5356), 515, -564) end end) task.spawn(function() while On do task.wait(1) if ar then local Event = game:GetService("ReplicatedStorage").Events.RequestRebirth Event:InvokeServer() end end end) end)