local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextBox = Instance.new("TextBox") local TextButton = Instance.new("TextButton") local TextButton_2 = Instance.new("TextButton") local Frame_2 = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local ImageLabel = Instance.new("ImageLabel") local TextButton_3 = Instance.new("TextButton") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.Position = UDim2.new(0.28551212, 0, 0.268115938, 0) Frame.Size = UDim2.new(0, 820, 0, 384) TextBox.Parent = Frame TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0) TextBox.Position = UDim2.new(0.0121951215, 0, 0.0755208358, 0) TextBox.Size = UDim2.new(0, 574, 0, 346) TextBox.ClearTextOnFocus = false TextBox.Font = Enum.Font.SourceSans TextBox.MultiLine = true TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(0, 0, 0) TextBox.TextSize = 16.000 TextBox.TextWrapped = true TextBox.TextXAlignment = Enum.TextXAlignment.Left TextBox.TextYAlignment = Enum.TextYAlignment.Top TextButton.Parent = Frame TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.Position = UDim2.new(0.713025033, 0, 0.0755208358, 0) TextButton.Size = UDim2.new(0, 85, 0, 168) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "EXE" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextSize = 16.000 TextButton_2.Parent = Frame TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton_2.Position = UDim2.new(0.713025033, 0, 0.513020813, 0) TextButton_2.Size = UDim2.new(0, 85, 0, 178) TextButton_2.Font = Enum.Font.SourceSans TextButton_2.Text = "CLEAR" TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton_2.TextSize = 16.000 Frame_2.Parent = Frame Frame_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Frame_2.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame_2.Position = UDim2.new(0.832501352, 0, 0.0755208358, 0) Frame_2.Size = UDim2.new(0, 128, 0, 346) TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1.000 TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.0398184434, 0, 0, 0) TextLabel.Size = UDim2.new(0, 93, 0, 29) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "Project Ligma" TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextSize = 16.000 ImageLabel.Parent = Frame ImageLabel.BackgroundColor3 = Color3.fromRGB(47, 47, 47) ImageLabel.BackgroundTransparency = 1.000 ImageLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) ImageLabel.BorderSizePixel = 0 ImageLabel.Position = UDim2.new(0.0195121951, 0, 0.015625, 0) ImageLabel.Size = UDim2.new(0, 16, 0, 16) ImageLabel.Image = "rbxassetid://87162794" TextButton_3.Parent = Frame TextButton_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextButton_3.BackgroundTransparency = 1.000 TextButton_3.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton_3.BorderSizePixel = 0 TextButton_3.Position = UDim2.new(0.9703421, 0, 0, 0) TextButton_3.Size = UDim2.new(0, 24, 0, 24) TextButton_3.Font = Enum.Font.SourceSans TextButton_3.Text = "X" TextButton_3.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton_3.TextSize = 16.000 local script = Instance.new('LocalScript', TextButton) script.Parent.MouseButton1Click:Connect(function() loadstring(script.Parent.Parent.TextBox.Text) end) local script = Instance.new('LocalScript', TextButton_2) script.Parent.MouseButton1Click:Connect(function() script.Parent.Parent.TextBox.Text="" end) local script = Instance.new('LocalScript', Frame) local UserInputService = game:GetService("UserInputService") local Frame = script.Parent local Dragging, DragInput, DragStart, StartPos local function Update(Input) local Delta = Input.Position - DragStart Frame.Position = UDim2.new(StartPos.X.Scale, StartPos.X.Offset + Delta.X, StartPos.Y.Scale, StartPos.Y.Offset + Delta.Y) end local Drag = function(Input) if Input.UserInputType == Enum.UserInputType.MouseButton1 or Input.UserInputType == Enum.UserInputType.Touch then Dragging = true DragStart = Input.Position StartPos = Frame.Position Input.Changed:Connect(function() if Input.UserInputState == Enum.UserInputState.End then Dragging = false end end) end end local Drag2 = function(Input) if Input.UserInputType == Enum.UserInputType.MouseMovement or Input.UserInputType == Enum.UserInputType.Touch then DragInput = Input end end Frame.InputBegan:Connect(function(Input) Drag(Input) end) Frame.InputChanged:Connect(function(Input) Drag2(Input) end) UserInputService.InputChanged:Connect(function(Input) if Input == DragInput and Dragging then Update(Input) end end) local script = Instance.new('LocalScript', TextButton_3) script.Parent.MouseButton1Click:Connect(function() script.Parent.Parent.Visible = false end)