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

Why doesn't this function work more than one time?

Asked by 7 years ago

works perfectly only the first time it happens, what's the problem?

01local Players = game:GetService("Players")
02local ReplicatedStorage = game:GetService("ReplicatedStorage")
03 
04local player = Players.LocalPlayer
05local welcomePlayerEvent = ReplicatedStorage:WaitForChild("FishEvent")
06local playerGui = player:WaitForChild("PlayerGui")
07 
08 
09local function onWelcomePlayerFired()
10do
11local henlo = script.Parent.ActivateFish:Clone()
12henlo.Parent = script.Parent
13henlo.Name = "Clone"
14henlo.Disabled = false
15wait(4)
16            end
17        end
18 
19welcomePlayerEvent.OnClientEvent:Connect(onWelcomePlayerFired)
0
Where is the script located? Also that 'do' is pretty useless. It just makes the code more complicated. TheDeadlyPanther 2460 — 7y
0
The 'wait(4)' is also useless, since it's at the end of a function/coroutine. The problem is likely that the first ActivateFish changes something important so that running it a second time doesn't work. If you printed out every time onWelcomePlayerFired, I expect you'd find that the function is running every time the event is fired. chess123mate 5873 — 7y

1 answer

Log in to vote
0
Answered by
DanzLua 2879 Moderation Voter Community Moderator
7 years ago
Edited 7 years ago

First let's get your variables down

1local Players = game:GetService("Players")
2local ReplicatedStorage = game:GetService("ReplicatedStorage")
3 
4local player = Players.LocalPlayer
5local welcomePlayerEvent = ReplicatedStorage:WaitForChild("FishEvent")
6local 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.

1welcomePlayerEvent.OnClientEvent:connect(function()
2 
3end)

Next i'm going to add your code in with just a bit of rearranging(idk i like it in a order ;p)

1welcomePlayerEvent.OnClientEvent:connect(function()
2    local henlo = script.Parent.ActivateFish:Clone()
3    henlo.Name = "Clone"
4    henlo.Parent = script.Parent
5    henlo.Disabled = false
6end)

No point in adding the wait(4) because the event can be called over and over

Let's put it together

01local Players = game:GetService("Players")
02local ReplicatedStorage = game:GetService("ReplicatedStorage")
03 
04local player = Players.LocalPlayer
05local welcomePlayerEvent = ReplicatedStorage:WaitForChild("FishEvent")
06local playerGui = player:WaitForChild("PlayerGui")
07 
08welcomePlayerEvent.OnClientEvent:connect(function()
09    local henlo = script.Parent.ActivateFish:Clone()
10    henlo.Name = "Clone"
11    henlo.Parent = script.Parent
12    henlo.Disabled = false
13end)

As long as no other script is deleting that ActivateFish instance you should be fine.

0
Thanks but this doesn't change the fact that it only works one time greybird700 63 — 7y
0
@greybird700 if the event is only being called one time then that means YOU are only calling it one time, this part of the script is correct, maybe your problem lies in the script you are firing the event from. DanzLua 2879 — 7y
Ad

Answer this question