Output:
Players.Freddan2006YT.PlayerGui.zxcxzx.Trolling_UI.Rocket.LocalScript:14: 'end' expected (to close 'function' at line 8) near 'else'
code:
01 | local button = script.Parent |
02 | local plrname = script.Parent.Parent.Parent.Trolling_UI.PlrName.Text |
03 | local rem = game.ReplicatedStorage.Admin:WaitForChild( "Rocket" ) |
04 | local status = script.Parent.Parent.Parent.Trolling_UI.status |
05 | print (plrname) |
06 | if workspace:FindFirstChild(plrname) then |
07 | button.MouseButton 1 Click:Connect( function () |
08 | status.Visible = true |
09 | status.Text = "Sending Request.." |
10 | wait( 0.8 ) |
11 | status.Visible = false |
12 | status.Text = "Succsess!" |
13 | else |
14 | status.Visible = true |
15 | status.Text = "Not a valid plr" |
16 | status.Visible = false |
17 | end ) |
18 | end |
chief you got it mixed up
01 | local button = script.Parent |
02 | local plrname = script.Parent.Parent.Parent.Trolling_UI.PlrName.Text |
03 | local rem = game.ReplicatedStorage.Admin:WaitForChild( "Rocket" ) |
04 | local status = script.Parent.Parent.Parent.Trolling_UI.status |
05 |
06 | button.MouseButton 1 Click: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!" |
13 | else |
14 | status.Visible = true |
15 | status.Text = "Not a valid plr" |
16 | status.Visible = false |
17 | end |
18 | end ) |