AC_Ham
(King_Ham)
December 30, 2022, 3:56pm
#1
What do you want to achieve?
I want to achieve a starting gui that I made by myself when the player loads in.
What have you tried so far?
I have watched how to blocxes video but I want to make my own instead of using someone else’s work but the video didn’t really help.
Can someone help me?
ifkpop
(ifkpop)
December 30, 2022, 3:58pm
#2
Making a “good starting gui” is difficult, since good is subjective. But you should start by just making a starting gui and worry about making a good gui later.
1 Like
xDeltaXen
(xDeltaXen)
January 9, 2023, 11:25am
#3
I would really appreciate it if you could help me
This is what I have done so far…
local part = Instance.new(“Part”)
part.Parent = workspace
part.Size = Vector3.new(0.5, 0.5, 0.5)
local part2 = Instance.new(“Part”)
part2.Parent = workspace
part2.Size = Vector3.new(0.5, 0.5, 0.5)
local part3 = Instance.new(“Part”)
part3.Parent = workspace
part3.Size = Vector3.new(0.5, 0.5, 0.5)
local part4 = Instance.new(“Part”)
part4.Parent = workspace
part4.Size = Vector3.new(0.5, 0.5, 0.5)
part.CFrame = CFrame.new(0, 5, 0)
part2.CFrame = CFrame.new(0, 5, 0)
part3.CFrame = CFrame.new(0, 5, 0)
part4.CFrame = CFrame.new(0, 5, 0)
part2.Anchored = true
part2.Size = Vector3.new(0.5, 0.5, 0.5)
part3.Anchored = true
part3.Size = Vector3.new(0.5, 0.5, 0.5)
part4.Anchored = true
part4.Size = Vector3.new(0.5, 0.5, 0.5)
local text = Instance.new(“TextLabel”)
text.Parent = part
text.Text = “Welcome to my game!”
text.Size = UDim2.new(1, 0, 1, 0)
local text2 = Instance.new(“TextLabel”)
text2.Parent = part2
text2.Text = “Press E to start!”
text2.Size = UDim2.new(1, 0, 1, 0)
local text3 = Instance.new(“TextLabel”)
text3.Parent = part3
text3.Text = “Press ESC to exit!”
text3.Size = UDim2.
AC_Ham
(King_Ham)
January 28, 2023, 2:46pm
#4
I will try it out soon Thanks!