local function Cut() pcall(function() local ReplicatedStorage = game:GetService("ReplicatedStorage") local CutInLineEvent = ReplicatedStorage:WaitForChild("Events"):WaitForChild("CutInLineEvent") CutInLineEvent:FireServer() end) end if game.CoreGui:FindFirstChild("SimpleCutterGUI") then game.CoreGui.SimpleCutterGUI:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "SimpleCutterGUI" ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Global local MainFrame = Instance.new("Frame") MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(40, 42, 54) MainFrame.BorderColor3 = Color3.fromRGB(28, 29, 38) MainFrame.Position = UDim2.new(0.5, -125, 0.5, -75) MainFrame.Size = UDim2.new(0, 250, 0, 150) local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 8) UICorner.Parent = MainFrame local TitleBar = Instance.new("Frame") TitleBar.Parent = MainFrame TitleBar.BackgroundColor3 = Color3.fromRGB(28, 29, 38) TitleBar.BorderSizePixel = 0 TitleBar.Size = UDim2.new(1, 0, 0, 30) local UICornerTitle = Instance.new("UICorner") UICornerTitle.CornerRadius = UDim.new(0, 8) UICornerTitle.Parent = TitleBar local TitleLabel = Instance.new("TextLabel") TitleLabel.Parent = TitleBar TitleLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TitleLabel.BackgroundTransparency = 1.000 TitleLabel.Size = UDim2.new(1, 0, 1, 0) TitleLabel.Font = Enum.Font.Gotham TitleLabel.Text = "EZ-CUT" TitleLabel.TextColor3 = Color3.fromRGB(248, 248, 242) TitleLabel.TextSize = 16.000 local CloseButton = Instance.new("TextButton") CloseButton.Parent = TitleBar CloseButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) CloseButton.BackgroundTransparency = 1.000 CloseButton.Position = UDim2.new(1, -30, 0, 0) CloseButton.Size = UDim2.new(0, 30, 1, 0) CloseButton.Font = Enum.Font.GothamBold CloseButton.Text = "X" CloseButton.TextColor3 = Color3.fromRGB(255, 85, 85) CloseButton.TextSize = 18.000 local CutButton = Instance.new("TextButton") CutButton.Parent = MainFrame CutButton.BackgroundColor3 = Color3.fromRGB(98, 114, 164) CutButton.BorderColor3 = Color3.fromRGB(28, 29, 38) CutButton.Position = UDim2.new(0.5, -100, 0, 45) CutButton.Size = UDim2.new(0, 200, 0, 35) CutButton.Font = Enum.Font.Gotham CutButton.Text = "Cut" CutButton.TextColor3 = Color3.fromRGB(248, 248, 242) CutButton.TextSize = 16.000 local UICornerCut = Instance.new("UICorner") UICornerCut.CornerRadius = UDim.new(0, 6) UICornerCut.Parent = CutButton local AutoCutToggle = Instance.new("TextButton") AutoCutToggle.Parent = MainFrame AutoCutToggle.BackgroundColor3 = Color3.fromRGB(255, 85, 85) AutoCutToggle.BorderColor3 = Color3.fromRGB(28, 29, 38) AutoCutToggle.Position = UDim2.new(0.5, -100, 0, 95) AutoCutToggle.Size = UDim2.new(0, 200, 0, 35) AutoCutToggle.Font = Enum.Font.Gotham AutoCutToggle.Text = "Auto-Cut: OFF" AutoCutToggle.TextColor3 = Color3.fromRGB(248, 248, 242) AutoCutToggle.TextSize = 16.000 local UICornerAutoCut = Instance.new("UICorner") UICornerAutoCut.CornerRadius = UDim.new(0, 6) UICornerAutoCut.Parent = AutoCutToggle local dragging = false local dragInput local dragStart local startPos TitleBar.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = MainFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) TitleBar.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) game:GetService("UserInputService").InputChanged:Connect(function(input) if input == dragInput and dragging then local delta = input.Position - dragStart MainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) CloseButton.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) CutButton.MouseButton1Click:Connect(function() Cut() end) local autoCutEnabled = false AutoCutToggle.MouseButton1Click:Connect(function() autoCutEnabled = not autoCutEnabled if autoCutEnabled then AutoCutToggle.Text = "Auto-Cut: ON" AutoCutToggle.BackgroundColor3 = Color3.fromRGB(80, 250, 123) task.spawn(function() while autoCutEnabled do Cut() task.wait(1) end end) else AutoCutToggle.Text = "Auto-Cut: OFF" AutoCutToggle.BackgroundColor3 = Color3.fromRGB(255, 85, 85) end end) warn("Loaded EZ-Cut!")