--// Creepy Squad SS | made by MrHaxorOfficial -- GUI Setup local gui = Instance.new("ScreenGui") gui.Parent = game.CoreGui local executorFrame = Instance.new("Frame") executorFrame.Parent = gui executorFrame.Size = UDim2.new(0, 500, 0, 300) executorFrame.Position = UDim2.new(0.25, 0, 0.3, 0) executorFrame.BackgroundColor3 = Color3.fromRGB(24, 24, 24) executorFrame.Active = true executorFrame.Draggable = true local executorTitle = Instance.new("TextLabel") executorTitle.Parent = executorFrame executorTitle.Size = UDim2.new(1, 0, 0, 40) executorTitle.BackgroundTransparency = 1 executorTitle.Text = "Creepy Squad SS | made by MrHaxorOfficial" executorTitle.TextColor3 = Color3.fromRGB(255, 255, 255) executorTitle.Font = Enum.Font.SourceSansBold executorTitle.TextScaled = true local codeBox = Instance.new("TextBox") codeBox.Parent = executorFrame codeBox.Position = UDim2.new(0.05, 0, 0.2, 0) codeBox.Size = UDim2.new(0.9, 0, 0.5, 0) codeBox.ClearTextOnFocus = false codeBox.TextXAlignment = Enum.TextXAlignment.Left codeBox.TextYAlignment = Enum.TextYAlignment.Top codeBox.MultiLine = true codeBox.TextColor3 = Color3.fromRGB(255, 255, 255) codeBox.BackgroundColor3 = Color3.fromRGB(16, 16, 16) codeBox.Font = Enum.Font.Code codeBox.Text = "" codeBox.TextWrapped = true codeBox.TextSize = 14 local executeButton = Instance.new("TextButton") executeButton.Parent = executorFrame executeButton.Position = UDim2.new(0.05, 0, 0.75, 0) executeButton.Size = UDim2.new(0.4, 0, 0.15, 0) executeButton.Text = "Execute" executeButton.BackgroundColor3 = Color3.fromRGB(32, 32, 32) executeButton.TextColor3 = Color3.fromRGB(255, 255, 255) local clearButton = Instance.new("TextButton") clearButton.Parent = executorFrame clearButton.Position = UDim2.new(0.55, 0, 0.75, 0) clearButton.Size = UDim2.new(0.4, 0, 0.15, 0) clearButton.Text = "Clear" clearButton.BackgroundColor3 = Color3.fromRGB(32, 32, 32) clearButton.TextColor3 = Color3.fromRGB(255, 255, 255) -- Functional Logic executeButton.MouseButton1Click:Connect(function() local source = codeBox.Text if source and source ~= "" then local success, err = pcall(function() loadstring(source)() end) if not success then warn("Execution Error: "..err) end end end) clearButton.MouseButton1Click:Connect(function() codeBox.Text = "" end)