0% found this document useful (0 votes)
53 views1 page

Scripts

The document is a Lua script for creating a graphical user interface (GUI) in a game, specifically for Roblox. It defines various UI elements such as frames, text labels, and buttons, along with their properties and styles. The script is designed to enhance player interaction by providing buttons for actions like 'Drop' and 'Equip'.

Uploaded by

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

Scripts

The document is a Lua script for creating a graphical user interface (GUI) in a game, specifically for Roblox. It defines various UI elements such as frames, text labels, and buttons, along with their properties and styles. The script is designed to enhance player interaction by providing buttons for actions like 'Drop' and 'Equip'.

Uploaded by

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

-- Gui to Lua-- Version: 3.

2-- Instances:local ScreenGui =


Instance.new("ScreenGui")local Frame = Instance.new("Frame")local TextLabel =
Instance.new("TextLabel")local drop = Instance.new("TextButton")local UICorner =
Instance.new("UICorner")local farm = Instance.new("TextButton")local UICorner_2 =
Instance.new("UICorner")local tool = Instance.new("TextBox")local UICorner_3 =
Instance.new("UICorner")local equip = Instance.new("TextButton")local UICorner_4 =
Instance.new("UICorner")local Hud = Instance.new("TextButton")local UICorner_5 =
Instance.new("UICorner")local UICorner_6 =
Instance.new("UICorner")--Properties:ScreenGui.Parent =
game.Players.LocalPlayer:WaitForChild("PlayerGui")Frame.Parent =
ScreenGuiFrame.BackgroundColor3 = Color3.fromRGB(170, 0, 127)Frame.Position =
UDim2.new(0.768526852, 0, 0.665101647, 0)Frame.Size = UDim2.new(0, 280, 0,
208)TextLabel.Parent = FrameTextLabel.BackgroundColor3 = Color3.fromRGB(255,
255, 255)TextLabel.BackgroundTransparency = 1.000TextLabel.Size = UDim2.new(0,
280, 0, 26)TextLabel.Font = Enum.Font.SourceSansTextLabel.Text = "Made by
27x34k"TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)TextLabel.TextScaled =
trueTextLabel.TextSize = 14.000TextLabel.TextWrapped = truedrop.Name =
"drop"drop.Parent = Framedrop.BackgroundColor3 = Color3.fromRGB(140, 0,
105)drop.Position = UDim2.new(0.0607142858, 0, 0.126871943, 0)drop.Size =
UDim2.new(0, 105, 0, 40)drop.Font = Enum.Font.SourceSansdrop.Text =
"Drop"drop.TextColor3 = Color3.fromRGB(0, 0, 0)drop.TextScaled = truedrop.TextSize
= 14.000drop.TextWrapped = trueUICorner.CornerRadius = UDim.new(0

You might also like