-- Tubers93 GUI Script -- Instances local SS = Instance.new("ScreenGui") local Main = Instance.new("Frame") local Execute = Instance.new("TextButton") local Clear = Instance.new("TextButton") local Script = Instance.new("TextBox") local Check = Instance.new("TextButton") -- Properties SS.Name = "Tubers93GUI" SS.Parent = game.CoreGui SS.ZIndexBehavior = Enum.ZIndexBehavior.Sibling SS.ResetOnSpawn = false Main.Name = "Main" Main.Parent = SS Main.Active = true Main.BackgroundColor3 = Color3.fromRGB(30, 30, 30) -- Dark background Main.BorderColor3 = Color3.fromRGB(255, 0, 0) -- Red border Main.Position = UDim2.new(0.35, 0, 0.35, 0) Main.Size = UDim2.new(0, 350, 0, 220) Main.Draggable = true Execute.Name = "Execute" Execute.Parent = Main Execute.BackgroundColor3 = Color3.fromRGB(50, 0, 0) -- Deep red button Execute.BorderColor3 = Color3.fromRGB(255, 0, 0) Execute.Position = UDim2.new(0.05, 0, 0.75, 0) Execute.Size = UDim2.new(0, 140, 0, 40) Execute.Font = Enum.Font.GothamBold Execute.Text = "Execute" Execute.TextColor3 = Color3.fromRGB(255, 255, 255) Execute.TextScaled = true Execute.TextWrapped = true Clear.Name = "Clear" Clear.Parent = Main Clear.BackgroundColor3 = Color3.fromRGB(50, 0, 0) Clear.BorderColor3 = Color3.fromRGB(255, 0, 0) Clear.Position = UDim2.new(0.55, 0, 0.75, 0) Clear.Size = UDim2.new(0, 140, 0, 40) Clear.Font = Enum.Font.GothamBold Clear.Text = "Clear" Clear.TextColor3 = Color3.fromRGB(255, 255, 255) Clear.TextScaled = true Clear.TextWrapped = true Script.Name = "Script" Script.Parent = Main Script.BackgroundColor3 = Color3.fromRGB(20, 20, 20) -- Dark textbox Script.BorderColor3 = Color3.fromRGB(255, 0, 0) Script.Position = UDim2.new(0.05, 0, 0.15, 0) Script.Size = UDim2.new(0, 320, 0, 100) Script.Font = Enum.Font.Code Script.PlaceholderText = "Insert script or command here..." Script.Text = "" Script.TextColor3 = Color3.fromRGB(255, 255, 255) Script.TextSize = 18 Script.TextWrapped = true Script.TextXAlignment = Enum.TextXAlignment.Left Script.TextYAlignment = Enum.TextYAlignment.Top Check.Name = "Check" Check.Parent = Main Check.BackgroundColor3 = Color3.fromRGB(50, 0, 0) Check.BorderColor3 = Color3.fromRGB(255, 0, 0) Check.Position = UDim2.new(-0.25, -30, 0, 0) Check.Size = UDim2.new(0, 80, 0, 220) Check.Font = Enum.Font.GothamBold Check.Text = "Tubers93" Check.TextColor3 = Color3.fromRGB(255, 255, 255) Check.TextScaled = true Check.TextWrapped = true -- Ensure RemoteEvent exists in ReplicatedStorage local remoteEvent = game:GetService("ReplicatedStorage"):FindFirstChild("ExecuteCommand") if not remoteEvent or not remoteEvent:IsA("RemoteEvent") then error("RemoteEvent 'ExecuteCommand' not found in ReplicatedStorage.") end -- Function to send the script to the server for execution local function executeCommandOnServer(command) if command and command ~= "" then -- Use RemoteEvent to send the command to the server remoteEvent:FireServer(command) else warn("No command provided.") end end -- Execute Button Logic Execute.MouseButton1Click:Connect(function() local scriptCode = Script.Text if scriptCode and scriptCode ~= "" then executeCommandOnServer(scriptCode) else warn("No script provided.") end end) -- Clear Button Logic Clear.MouseButton1Click:Connect(function() Script.Text = "" -- Clears the textbox end) -- Check Button Logic (Eerie Message) Check.MouseButton1Click:Connect(function() local msg = Instance.new("Message", workspace) msg.Text = "Welcome to Tubers93 GUI..." wait(2) msg.Text = "Execute at your own risk!" wait(2) msg:Destroy() end)