Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Help with a unexpected symbol?

Asked by 10 years ago

I'm trying to make some Guis in a screen gui but I keep getting a error saying

Workspace.Script:6: unexpected symbol near '.'

Why am I getting this error if I am using the correct symbol to access the property?

Hierarchy Picture

How would I fix this?

01game.Players.PlayerAdded:event(function(Player)
02    Parent = Player.PlayerGui.ScreenGui
03function CreateButtons()
04----------------------Button----------------------
05local Button = Instance.new("TextButton",Parent)
06local Button.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
07local Button.Size = UDim2.new(0.2, 0,0.14, 0)
08local Button.Text = "PlayerName"
09local Button.Name = "Button"
10local Button.Position = UDim2.new(0.08,0,0.13,0)
11----------------------ButtonUnderImage----------------------
12local Buttonunderimage = Instance.new("Frame",Parent)
13local Buttonunderimage.Style = Enum.FrameStyle.DropShadow
14local Buttonunderimage.Size = UDim2.new(0,0,0.13,0)
15local Buttonunderimage.Name = "ButtonUnderImage"
View all 26 lines...

1 answer

Log in to vote
2
Answered by
BlueTaslem 18071 Moderation Voter Administrator Community Moderator Super Administrator
10 years ago

Properties of objects aren't variables.

You cannot declare them as local (they don't have any meaningful scope).

Because of the use of local, it didn't "expect" to see a ".", which is what the error is informing you of.

Remove the unnecessary locals on the assignments to properties and it will be fine.


Note: This is a syntax error. Lua didn't even start evaluating your script; that means the hierarchy or whatever other configuration actually isn't relevant (though thank you for providing it in case!)

Ad

Answer this question