0% found this document useful (0 votes)
151 views2 pages

Team 8x8x8x8 Executor GUI Script

The document outlines a Lua script for creating a graphical user interface (GUI) in Roblox, featuring a frame with an image, text box, and buttons for executing code and clearing text. It includes properties for visual elements such as color, size, and text formatting. Additionally, it contains scripts that enable functionality for the buttons, allowing users to execute code from the text box or clear its contents.

Uploaded by

rbyman832
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
151 views2 pages

Team 8x8x8x8 Executor GUI Script

The document outlines a Lua script for creating a graphical user interface (GUI) in Roblox, featuring a frame with an image, text box, and buttons for executing code and clearing text. It includes properties for visual elements such as color, size, and text formatting. Additionally, it contains scripts that enable functionality for the buttons, allowing users to execute code from the text box or clear its contents.

Uploaded by

rbyman832
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

-- Gui to Lua

-- Version: 3.2

-- Instances:

local ScreenGui = [Link]("ScreenGui")


local Frame = [Link]("Frame")
local ImageLabel = [Link]("ImageLabel")
local TextBox = [Link]("TextBox")
local TextButton = [Link]("TextButton")
local TextButton_2 = [Link]("TextButton")
local TextLabel = [Link]("TextLabel")

--Properties:

[Link] = [Link]:WaitForChild("PlayerGui")
[Link] = [Link]

[Link] = ScreenGui
Frame.BackgroundColor3 = [Link](255, 0, 0)
Frame.BorderColor3 = [Link](0, 0, 0)
[Link] = 4
[Link] = [Link](0.175382644, 0, 0.0659013614, 0)
[Link] = [Link](0, 404, 0, 239)

[Link] = Frame
ImageLabel.BackgroundColor3 = [Link](255, 255, 255)
ImageLabel.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0, 0, -3.1922152e-08, 0)
[Link] = [Link](0, 404, 0, 239)
[Link] = "rbxassetid://15660440622"

[Link] = ImageLabel
TextBox.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 0.800
TextBox.BorderColor3 = [Link](0, 0, 0)
[Link] = 4
[Link] = [Link](-3.77692793e-08, 0, 0.217573225, 0)
[Link] = [Link](0, 404, 0, 135)
[Link] = [Link]
[Link] = "code here"
TextBox.TextColor3 = [Link](0, 0, 0)
[Link] = true
[Link] = 14.000
[Link] = true

[Link] = ImageLabel
TextButton.BackgroundColor3 = [Link](255, 255, 255)
TextButton.BorderColor3 = [Link](0, 0, 0)
[Link] = 3
[Link] = [Link](0, 0, 0.790794969, 0)
[Link] = [Link](0, 200, 0, 50)
[Link] = [Link]
[Link] = "execute"
TextButton.TextColor3 = [Link](0, 0, 0)
[Link] = true
[Link] = 14.000
[Link] = true
TextButton_2.Parent = ImageLabel
TextButton_2.BackgroundColor3 = [Link](255, 255, 255)
TextButton_2.BorderColor3 = [Link](0, 0, 0)
TextButton_2.BorderSizePixel = 3
TextButton_2.Position = [Link](0.504950523, 0, 0.790794969, 0)
TextButton_2.Size = [Link](0, 200, 0, 50)
TextButton_2.Font = [Link]
TextButton_2.Text = "clear"
TextButton_2.TextColor3 = [Link](0, 0, 0)
TextButton_2.TextScaled = true
TextButton_2.TextSize = 14.000
TextButton_2.TextWrapped = true

[Link] = Frame
TextLabel.BackgroundColor3 = [Link](255, 255, 255)
TextLabel.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0, 404, 0, 25)
[Link] = [Link]
[Link] = "team8x8x8x8 executor v2"
TextLabel.TextColor3 = [Link](0, 0, 0)
[Link] = true
[Link] = 14.000
TextLabel.TextStrokeColor3 = [Link](255, 85, 0)
[Link] = 0.000
[Link] = true

-- Scripts:

local function IOJWL_fake_script() -- [Link]


local script = [Link]('LocalScript', TextButton)

local textbox = [Link]


[Link].MouseButton1Click:Connect(function()
loadstring([Link])()
end)

end
[Link](IOJWL_fake_script)()
local function ARVLU_fake_script() -- TextButton_2.LocalScript
local script = [Link]('LocalScript', TextButton_2)

local textbox = [Link]


[Link].MouseButton1Click:Connect(function()
[Link] = ""
end)

end
[Link](ARVLU_fake_script)()
local function LDMFV_fake_script() -- [Link]
local script = [Link]('Script', Frame)

[Link] = true
[Link] = true

end
[Link](LDMFV_fake_script)()

You might also like