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

the "waiter" gui will not show up please help?

Asked by 8 years ago
p = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent

function buy()
            game.ReplicatedStorage["Cheezburger"]:clone().Parent = p.Backpack
            wait(1)
            script.Parent.Parent.Parent.Parent.Visible = false

            wait(1)

            game.StarterGui.Waiter.Frame.Visible = true
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "H"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Ho"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hop"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope"
            wait(0.1
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope y"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope yo"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you e"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you en"
            wait(0.1
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enj"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjo"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy t"
            wait(0.1
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy th"
            wait(0.1
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the m"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the me"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the mea"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the meal"
            wait(1)
            game.StarterGui.Waiter.Frame.Visible = false
end

script.Parent.MouseButton1Click:connect(buy)

output = 13:18:20.899 - Players.Player.PlayerGui.ScreenGui.ImageLabel.Dekor.1.TextButton.Script:20: ')' expected (to close '(' at line 19) near 'game'

0
You coding is sloppy, you could have fixed this yourself if you just check it. Some lines -wait(0.1 - are not closed! Check through them. ConnorXV 5 — 8y

1 answer

Log in to vote
0
Answered by
Mauvn 100
8 years ago
p = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent

function buy()
            game.ReplicatedStorage["Cheezburger"]:clone().Parent = p.Backpack
            wait(1)
            script.Parent.Parent.Parent.Parent.Visible = false

            wait(1)

            game.StarterGui.Waiter.Frame.Visible = true
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "H"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Ho"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hop"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope y"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope yo"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you e"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you en"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enj"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjo"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy t"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy th"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the m"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the me"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the mea"
            wait(0.1)
            game.StarterGui.Waiter.Frame.TextLabel.Text = "Hope you enjoy the meal"
            wait(1)
            game.StarterGui.Waiter.Frame.Visible = false
end

script.Parent.MouseButton1Click:connect(buy)


Try this.

Ad

Answer this question