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

Fly GUI V3 JGO

The document contains a script for a GUI named 'JGO' created in Roblox. It includes various UI elements such as buttons for 'UP', 'DOWN', and 'ON/OFF', along with a label displaying the name 'JGO' and a speed indicator. The script sets up the layout and appearance of the GUI components within the game's CoreGui.

Uploaded by

ghr30657
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)
394 views2 pages

Fly GUI V3 JGO

The document contains a script for a GUI named 'JGO' created in Roblox. It includes various UI elements such as buttons for 'UP', 'DOWN', and 'ON/OFF', along with a label displaying the name 'JGO' and a speed indicator. The script sets up the layout and appearance of the GUI components within the game's CoreGui.

Uploaded by

ghr30657
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
You are on page 1/ 2

-- ‫ سكربت‬Fly GUI V3 ‫ الأصلي مع تعديل االسم فقط إلى‬JGO

local main = Instance.new("ScreenGui")


local Frame = Instance.new("Frame")
local up = Instance.new("TextButton")
local down = Instance.new("TextButton")
local onof = Instance.new("TextButton")
local TextLabel = Instance.new("TextLabel")
local plus = Instance.new("TextButton")
local speed = Instance.new("TextLabel")
local mine = Instance.new("TextLabel")

main.Name = "JGO"
main.Parent = game.CoreGui

Frame.Parent = main
Frame.BackgroundColor3 = Color3.new(1, 1, 1)
Frame.Position = UDim2.new(0.052, 0, 0.483, 0)
Frame.Size = UDim2.new(0, 188, 0, 220)
Frame.Style = Enum.FrameStyle.RobloxRound

up.Name = "up"
up.Parent = Frame
up.BackgroundColor3 = Color3.new(0, 0, 0)
up.Position = UDim2.new(0.117, 0, 0.205, 0)
up.Size = UDim2.new(0, 145, 0, 33)
up.Font = Enum.Font.SourceSans
up.Text = "UP"
up.TextColor3 = Color3.new(1, 1, 1)
up.TextSize = 14

down.Name = "down"
down.Parent = Frame
down.BackgroundColor3 = Color3.new(0, 0, 0)
down.Position = UDim2.new(0.117, 0, 0.409, 0)
down.Size = UDim2.new(0, 145, 0, 33)
down.Font = Enum.Font.SourceSans
down.Text = "DOWN"
down.TextColor3 = Color3.new(1, 1, 1)
down.TextSize = 14

onof.Name = "onof"
onof.Parent = Frame
onof.BackgroundColor3 = Color3.new(0, 0, 0)
onof.Position = UDim2.new(0.117, 0, 0.614, 0)
onof.Size = UDim2.new(0, 145, 0, 33)
onof.Font = Enum.Font.SourceSans
onof.Text = "ON / OFF"
onof.TextColor3 = Color3.new(1, 1, 1)
onof.TextSize = 14

TextLabel.Parent = Frame
TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
TextLabel.Size = UDim2.new(0, 188, 0, 31)
TextLabel.Font = Enum.Font.SourceSans
TextLabel.Text = "JGO"
TextLabel.TextColor3 = Color3.new(1, 1, 1)
TextLabel.TextSize = 14
plus.Name = "plus"
plus.Parent = Frame
plus.BackgroundColor3 = Color3.new(0, 0, 0)
plus.Position = UDim2.new(0.122, 0, 0.832, 0)
plus.Size = UDim2.new(0, 67, 0, 33)
plus.Font = Enum.Font.SourceSans
plus.Text = "+"
plus.TextColor3 = Color3.new(1, 1, 1)
plus.TextSize = 14

speed.Name = "speed"
speed.Parent = Frame
speed.BackgroundColor3 = Color3.new(1, 1, 1)
speed.Position = UDim2.new(0.5, 0, 0.832, 0)
speed.Size = UDim2.new(0, 47, 0, 33)
speed.Font = Enum.Font.SourceSans
speed.Text = "1"
speed.TextColor3 = Color3.new(0, 0, 0)
speed.TextSize = 14

mine.Name = "mine"
mine.Parent = Frame
mine.BackgroundColor3 = Color3.new(1, 1, 1)
mine.BackgroundTransparency = 1
mine.Position = UDim2.new(0, 0, 1, 0)
mine.Size = UDim2.new(0, 188, 0, 20)
mine.Font = Enum.Font.SourceSans
mine.Text = "Made By JGO"
mine.TextColor3 = Color3.new(0, 0, 0)
mine.TextSize = 14

You might also like