ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script ๐Ÿ“Œ
2.6k Views

ActNormal Executer made by You

Universal Script ๐Ÿ“ŒUploaded by
1 year ago
Please login to perform these actions:

Description

This executer is working you can execute and clear or put text.

View Raw
Edited By: Gray1o7 Download


Comments
3
User profile picture
Cl1f0nkid 1 year ago - Edited
--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local UserInputService = game:GetService("UserInputService") local function isAllowedDevice() return UserInputService.TouchEnabled or UserInputService.KeyboardEnabled end if not isAllowedDevice() then return end local screenGui = Instance.new("ScreenGui") screenGui.Name = "DeltaExecutor" screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Name = "MainFrame" frame.Parent = screenGui frame.Size = UDim2.new(0.3, 0, 0.4, 0) frame.Position = UDim2.new(0.35, 0, 0.3, 0) frame.BackgroundColor3 = Color3.fromRGB(34, 34, 34) frame.BorderSizePixel = 2 frame.BorderColor3 = Color3.fromRGB(85, 170, 255) frame.Active = true local textBox = Instance.new("TextBox") textBox.Name = "ScriptBox" textBox.Parent = frame textBox.Size = UDim2.new(0.9, 0, 0.6, 0) textBox.Position = UDim2.new(0.05, 0, 0.05, 0) textBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) textBox.Text = "Put Script Here" textBox.Font = Enum.Font.SourceSans textBox.TextSize = 18 textBox.TextColor3 = Color3.fromRGB(0, 0, 0) textBox.ClearTextOnFocus = true local executeButton = Instance.new("TextButton") executeButton.Name = "ExecuteButton" executeButton.Parent = frame executeButton.Size = UDim2.new(0.4, 0, 0.2, 0) executeButton.Position = UDim2.new(0.05, 0, 0.7, 0) executeButton.BackgroundColor3 = Color3.fromRGB(85, 170, 255) executeButton.Text = "Execute" executeButton.Font = Enum.Font.SourceSans executeButton.TextSize = 18 executeButton.TextColor3 = Color3.fromRGB(255, 255, 255) local clearButton = Instance.new("TextButton") clearButton.Name = "ClearButton" clearButton.Parent = frame clearButton.Size = UDim2.new(0.4, 0, 0.2, 0) clearButton.Position
User profile picture
Gray1o7 1 year ago - Edited
Uhh what is going on
User profile picture
Gray1o7 1 year ago - Edited
I will now make new version
Please Login to add a comment.