Back to Scripts

C00l
ScriptBlox
Universal
Free
Game: Universal Script 📌
249
Views
0
Likes
0
Dislikes

aleksandre070716
offline
Features
In fact, I'm too lazy to make the scripts myself, but you already understand, in short, artificial intelligence did a good job
Script Code
-- c00lmalw Executor v1.0 — Mini Delta-inspired, Compact Edition!
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local PlayerGui = player:WaitForChild("PlayerGui")
-- Create ScreenGui
local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Name = "c00lmalwExecutor"
ScreenGui.Parent = PlayerGui
ScreenGui.ResetOnSpawn = false
-- Main Frame
local MainFrame = Instance.new("Frame")
MainFrame.Name = "MainFrame"
MainFrame.Parent = ScreenGui
MainFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) -- White background
MainFrame.Position = UDim2.new(0.3, 0, 0.3, 0)
MainFrame.Size = UDim2.new(0, 300, 0, 200) -- Reverted to original compact size
MainFrame.Active = true
MainFrame.Draggable = true -- Draggable window
-- Smooth corners for MainFrame
local FrameCorner = Instance.new("UICorner")
FrameCorner.CornerRadius = UDim.new(0, 10)
FrameCorner.Parent = MainFrame
-- Title Label
local TitleLabel = Instance.new("TextLabel")
TitleLabel.Name = "TitleLabel"
TitleLabel.Parent = MainFrame
TitleLabel.BackgroundColor3 = Color3.fromRGB(255, 215, 0) -- Yellow vibe
TitleLabel.Size = UDim2.new(1, 0, 0, 30)
TitleLabel.Font = Enum.Font.SourceSansBold
TitleLabel.Text = "c00lmalw Executor"
TitleLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
TitleLabel.TextSize = 16
-- Smooth corners for Title
local TitleCorner = Instance.new("UICorner")
TitleCorner.CornerRadius = UDim.new(0, 6)
TitleCorner.Parent = TitleLabel
-- Script Input Box
local ScriptBox = Instance.new("TextBox")
ScriptBox.Name = "ScriptBox"
ScriptBox.Parent = MainFrame
ScriptBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) -- White background
ScriptBox.BorderColor3 = Color3.fromRGB(0, 0, 0)
ScriptBox.BorderSizePixel = 1
ScriptBox.Position = UDim2.new(0, 8, 0, 38)
ScriptBox.Size = UDim2.new(1, -16, 1, -80) -- Adjusted for single row of buttons
ScriptBox.Font = Enum.Font.Code
ScriptBox.Text = "cool" -- Default text
ScriptBox.TextColor3 = Color3.fromRGB(0, 0, 0)
ScriptBox.TextSize = 12
ScriptBox.TextXAlignment = Enum.TextXAlignment.Left
ScriptBox.TextYAlignment = Enum.TextYAlignment.Top
ScriptBox.MultiLine = true
-- Smooth corners for ScriptBox
local ScriptBoxCorner = Instance.new("UICorner")
ScriptBoxCorner.CornerRadius = UDim.new(0, 6)
ScriptBoxCorner.Parent = ScriptBox
-- Execute Button (smaller, black)
local ExecuteButton = Instance.new("TextButton")
ExecuteButton.Name = "ExecuteButton"
ExecuteButton.Parent = MainFrame
ExecuteButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Black background
ExecuteButton.Position = UDim2.new(0, 8, 1, -38)
ExecuteButton.Size = UDim2.new(0.23, -4, 0, 25) -- Smaller button
ExecuteButton.Font = Enum.Font.SourceSansBold
ExecuteButton.Text = "Execute"
ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255)
ExecuteButton.TextSize = 12 -- Smaller font
-- Smooth corners for Execute
local ExecuteCorner = Instance.new("UICorner")
ExecuteCorner.CornerRadius = UDim.new(0, 6)
ExecuteCorner.Parent = ExecuteButton
-- Clear Button (smaller, black)
local ClearButton = Instance.new("TextButton")
ClearButton.Name = "ClearButton"
ClearButton.Parent = MainFrame
ClearButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Black background
ClearButton.Position = UDim2.new(0.25, 2, 1, -38)
ClearButton.Size = UDim2.new(0.23, -4, 0, 25) -- Smaller button
ClearButton.Font = Enum.Font.SourceSansBold
ClearButton.Text = "Clear"
ClearButton.TextColor3 = Color3.fromRGB(255, 255, 255)
ClearButton.TextSize = 12 -- Smaller font
-- Smooth corners for Clear
local ClearCorner = Instance.new("UICorner")
ClearCorner.CornerRadius = UDim.new(0, 6)
ClearCorner.Parent = ClearButton
-- Backdoor Button (smaller, black)
local BackdoorButton = Instance.new("TextButton")
BackdoorButton.Name = "BackdoorButton"
BackdoorButton.Parent = MainFrame
BackdoorButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Black background
BackdoorButton.Position = UDim2.new(0.5, 0, 1, -38)
BackdoorButton.Size = UDim2.new(0.23, -4, 0, 25) -- Smaller button
BackdoorButton.Font = Enum.Font.SourceSansBold
BackdoorButton.Text = "Backdoor"
BackdoorButton.TextColor3 = Color3.fromRGB(255, 255, 255)
BackdoorButton.TextSize = 12 -- Smaller font
-- Smooth corners for Backdoor
local BackdoorCorner = Instance.new("UICorner")
BackdoorCorner.CornerRadius = UDim.new(0, 6)
BackdoorCorner.Parent = BackdoorButton
-- R6 Button (smaller, black)
local R6Button = Instance.new("TextButton")
R6Button.Name = "R6Button"
R6Button.Parent = MainFrame
R6Button.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Black background
R6Button.Position = UDim2.new(0.75, -2, 1, -38)
R6Button.Size = UDim2.new(0.23, -4, 0, 25) -- Smaller button
R6Button.Font = Enum.Font.SourceSansBold
R6Button.Text = "R6"
R6Button.TextColor3 = Color3.fromRGB(255, 255, 255)
R6Button.TextSize = 12 -- Smaller font
-- Smooth corners for R6
local R6Corner = Instance.new("UICorner")
R6Corner.CornerRadius = UDim.new(0, 6)
R6Corner.Parent = R6Button
-- Functions
local function executeScript()
local scriptCode = ScriptBox.Text
if scriptCode and scriptCode ~= "" then
local success, errorMsg = pcall(function()
loadstring(scriptCode)()
end)
if not success then
game.StarterGui:SetCore("SendNotification", {
Title = "Error!",
Text = "Script error: " .. tostring(errorMsg),
Duration = 5
})
else
game.StarterGui:SetCore("SendNotification", {
Title = "c00lmalw Success!",
Text = "Script executed! Cool!",
Duration = 3
})
end
end
end
local function clearScript()
ScriptBox.Text = "cool" -- Reset to "cool"
end
local function checkBackdoor()
local success, result = pcall(function()
if require then
local scriptCode = ScriptBox.Text
if scriptCode:lower():find("require") then
return loadstring(scriptCode)()
else
return false, "No require call detected in script."
end
else
return false, "No backdoor detected."
end
end)
if not success or not result then
game.StarterGui:SetCore("SendNotification", {
Title = "Error!",
Text = "Backdoor failed: " .. tostring(result or "Unknown error"),
Duration = 5
})
else
game.StarterGui:SetCore("SendNotification", {
Title = "c00lmalw Success!",
Text = "Backdoor script executed! Cool!",
Duration = 3
})
end
end
local function executeR6Script()
local success, errorMsg = pcall(function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-GAZER-FE-ANIMATION-EDITOR-54459"))()
end)
if not success then
game.StarterGui:SetCore("SendNotification", {
Title = "Error!",
Text = "R6 script error: " .. tostring(errorMsg),
Duration = 5
})
else
game.StarterGui:SetCore("SendNotification", {
Title = "c00lmalw Success!",
Text = "R6 script executed! Cool!",
Duration = 3
})
end
end
-- Events
ExecuteButton.MouseButton1Click:Connect(executeScript)
ClearButton.MouseButton1Click:Connect(clearScript)
BackdoorButton.MouseButton1Click:Connect(checkBackdoor)
R6Button.MouseButton1Click:Connect(executeR6Script)
-- Hotkey: Enter to execute
ScriptBox.FocusLost:Connect(function(enterPressed)
if enterPressed then
executeScript()
end
end)
print("c00lmalw Executor loaded! Paste scripts and run code!")
Comments (0)
Please login to comment
Login with Discord
Loading comments...