Answered by
7 years ago Edited 7 years ago
First let's get your variables down
1 | local Players = game:GetService( "Players" ) |
2 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
4 | local player = Players.LocalPlayer |
5 | local welcomePlayerEvent = ReplicatedStorage:WaitForChild( "FishEvent" ) |
6 | local playerGui = player:WaitForChild( "PlayerGui" ) |
The do on line 10 is pretty much useless so let's get rid of it, also lets combine the function and calling it.
1 | welcomePlayerEvent.OnClientEvent:connect( function () |
Next i'm going to add your code in with just a bit of rearranging(idk i like it in a order ;p)
1 | welcomePlayerEvent.OnClientEvent:connect( function () |
2 | local henlo = script.Parent.ActivateFish:Clone() |
4 | henlo.Parent = script.Parent |
No point in adding the wait(4) because the event can be called over and over
Let's put it together
01 | local Players = game:GetService( "Players" ) |
02 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local player = Players.LocalPlayer |
05 | local welcomePlayerEvent = ReplicatedStorage:WaitForChild( "FishEvent" ) |
06 | local playerGui = player:WaitForChild( "PlayerGui" ) |
08 | welcomePlayerEvent.OnClientEvent:connect( function () |
09 | local henlo = script.Parent.ActivateFish:Clone() |
11 | henlo.Parent = script.Parent |
12 | henlo.Disabled = false |
As long as no other script is deleting that ActivateFish instance you should be fine.