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

Where do i need to put this end i'm soo confused??

Asked by 5 years ago

Output:

Players.Freddan2006YT.PlayerGui.zxcxzx.Trolling_UI.Rocket.LocalScript:14: 'end' expected (to close 'function' at line 8) near 'else'

code:

01local button = script.Parent
02local plrname = script.Parent.Parent.Parent.Trolling_UI.PlrName.Text
03local rem = game.ReplicatedStorage.Admin:WaitForChild("Rocket")
04local status =script.Parent.Parent.Parent.Trolling_UI.status
05    print(plrname)
06if workspace:FindFirstChild(plrname) then
07button.MouseButton1Click:Connect(function()
08    status.Visible = true
09    status.Text = "Sending Request.."
10    wait(0.8)
11    status.Visible = false
12    status.Text = "Succsess!"
13else
14    status.Visible = true
15    status.Text = "Not a valid plr"
16    status.Visible = false
17end)
18end

1 answer

Log in to vote
1
Answered by
Robin5D 186
5 years ago

chief you got it mixed up

01local button = script.Parent
02local plrname = script.Parent.Parent.Parent.Trolling_UI.PlrName.Text
03local rem = game.ReplicatedStorage.Admin:WaitForChild("Rocket")
04local status =script.Parent.Parent.Parent.Trolling_UI.status
05 
06button.MouseButton1Click:Connect(function()
07    if workspace:FindFirstChild(plrname) then
08    status.Visible = true
09    status.Text = "Sending Request.."
10    wait(0.8)
11    status.Visible = false
12    status.Text = "Succsess!"
13else
14    status.Visible = true
15    status.Text = "Not a valid plr"
16    status.Visible = false
17end
18end)
0
Oh..god i will never learn. And also thanks ?? Freddan2006YT 88 — 5y
0
Oh..god i will never learn. And also thanks! Freddan2006YT 88 — 5y
0
Oh..god i will never learn. And also thanks! Freddan2006YT 88 — 5y
0
Oh..god i will never learn. And also thanks! Freddan2006YT 88 — 5y
Ad

Answer this question