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

Scripts Java

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, buttons, and text labels, and sets their properties like color, position, and size. The script is intended to enhance player interaction within the game environment.

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)
21 views1 page

Scripts Java

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, buttons, and text labels, and sets their properties like color, position, and size. The script is intended to enhance player interaction within the game environment.

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,
2tLabel.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