local ScreenGui = Instance.new("ScreenGui") local main = Instance.new("Frame") local UICorner = Instance.new("UICorner") local TextLabel = Instance.new("TextLabel") local UICorner_2 = Instance.new("UICorner") local Source = Instance.new("TextBox") local UICorner_3 = Instance.new("UICorner") local clear = Instance.new("TextButton") local UICorner_4 = Instance.new("UICorner") local execute = Instance.new("TextButton") local UICorner_5 = Instance.new("UICorner") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling main.Name = "main" main.Parent = ScreenGui main.BackgroundColor3 = Color3.fromRGB(255, 170, 0) main.BorderSizePixel = 0 main.Position = UDim2.new(0.204565033, 0, 0.145747542, 0) main.Size = UDim2.new(0, 600, 0, 333) UICorner.Parent = main TextLabel.Parent = main TextLabel.BackgroundColor3 = Color3.fromRGB(255, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Size = UDim2.new(0, 600, 0, 50) TextLabel.Font = Enum.Font.Arcade TextLabel.Text = "GoofyUserAh's Executor" TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextSize = 32.000 UICorner_2.Parent = TextLabel Source.Name = "Source" Source.Parent = main Source.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Source.BorderSizePixel = 0 Source.Position = UDim2.new(0.12166667, 0, 0.180180177, 0) Source.Size = UDim2.new(0, 435, 0, 180) Source.Font = Enum.Font.SourceSans Source.PlaceholderText = "scripts here" Source.Text = "" Source.TextColor3 = Color3.fromRGB(0, 0, 0) Source.TextSize = 14 Source.TextWrapped = true Source.TextXAlignment = Enum.TextXAlignment.Left Source.ClearTextOnFocus = false UICorner_3.Parent = Source clear.Name = "clear" clear.Parent = main clear.BackgroundColor3 = Color3.fromRGB(255, 107, 8) clear.BorderSizePixel = 0 clear.Position = UDim2.new(0.688333333, 0, 0.771771789, 0) clear.Size = UDim2.new(0, 154, 0, 50) clear.Font = Enum.Font.Arcade clear.Text = "clear" clear.TextColor3 = Color3.fromRGB(0, 0, 0) clear.TextSize = 27.000 UICorner_4.Parent = clear execute.Name = "execute" execute.Parent = main execute.BackgroundColor3 = Color3.fromRGB(255, 107, 8) execute.BorderSizePixel = 0 execute.Position = UDim2.new(0.086666666, 0, 0.771771789, 0) execute.Size = UDim2.new(0, 154, 0, 50) execute.Font = Enum.Font.Arcade execute.Text = "execute" execute.TextColor3 = Color3.fromRGB(0, 0, 0) execute.TextSize = 27.000 UICorner_5.Parent = execute clear.MouseButton1Click:Connect(function() Source.Text = '' end) execute.MouseButton1Click:Connect(function() local success, errorMessage = pcall(function() loadstring(Source.Text)() end) if not success then warn("Error executing script: " .. errorMessage) end end) local function dragify(Main) local dragToggle, dragSpeed, dragInput, dragStart, dragPos dragSpeed = 0.95 local function updateInput(input) local Delta = input.Position - dragStart local Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y ) game:GetService("TweenService"):Create(Main, TweenInfo.new(.25), {Position = Position}):Play() end Main.InputBegan:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then dragToggle = true dragStart = input.Position startPos = Main.Position input.Changed:Connect(function() if (input.UserInputState == Enum.UserInputState.End) then dragToggle = false end end) end end) Main.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 dragToggle) then updateInput(input) end end) end dragify(main) game.StarterGui:SetCore("SendNotification", { Title = "execute works now"; Text = "script by GoofyUserAh/me"; Icon = "rbxassetid://5430597512"; Duration = 5; }) game.StarterGui:SetCore("SendNotification", { Title = "thanks to simplescripter for fix"; Text = "script by GoofyUserAh/me"; Icon = "rbxassetid://5430597512"; Duration = 5; })