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

FireClient not working inside ServerScriptService?

Asked by 4 years ago
Edited 4 years ago

I have two scripts. A local one and a server one The server one is inside the ServerScriptService The client one is inside the StarterGui.

01--server script. its not the entire script.
02player.Chatted:Connect(function(text)
03            print(dummyCount)
04            local chattext = string.lower(text)
05            if chattext == "/createdummy" or chattext == "/cd" then
06                if dummyCount < 4 then
07                    local clonedDummy = dummy:Clone()
08                    clonedDummy.Parent = folderPerPlayer
09                    clonedDummy.Name = player.Name.." Dummy "..dummyCount
10                    clonedDummy:MoveTo(humanoidRootPart.Position + Vector3.new(math.random(-10, 13), 7, math.random(-9, 12)))
11                elseif dummyCount == 4 then
12                    print(player.Name)
13                    getWarning:FireClient(player, "(You can only see this!) You can't add anymore dummies! Use /removedummy (/rd) to delete all dummies!") --it wont fire
14                end
15            end

<><><><><><><><><><><><><><><><><>

01--client script, full script. wont print message.
02local starterGui = game:GetService("StarterGui")
03local replicatedStorage = game:GetService("ReplicatedStorage")
04local getWarning = replicatedStorage:WaitForChild("getWarning")
05 
06local function CreateSystemMessage(message, color, font, fontsize)
07    starterGui:SetCore("ChatMakeSystemMessage",{
08        Text = message;
09        Color = color;
10        Font = font;
11        FontSize = fontsize;
12    })
13end
14 
15while true do
View all 36 lines...

1 answer

Log in to vote
1
Answered by 4 years ago

your OnClientEvent is never reached due to loop

There's the problem with only the client script, the server script is actually working fine and it's not the cause. Your client script is using loop which mean that the OnClientEvent event will never listen because OnClientEvent is never reached.

The solution is to separate the local script into 2 different local scripts so that loop is on 1st local script while OnClientEvent is on 2nd local script.

==== SOLUTION ====

==== 1st LocalScript ====

01local starterGui = game:GetService("StarterGui")
02 
03local function CreateSystemMessage(message, color, font, fontsize)
04    starterGui:SetCore("ChatMakeSystemMessage",{
05        Text = message;
06        Color = color;
07        Font = font;
08        FontSize = fontsize;
09    })
10end
11 
12while true do
13    CreateSystemMessage(
14        "{System} Chat /createdummy (/cd) to spawn dummies and /removedummy (/rd) to remove dummies.",
15        Color3.fromRGB(252, 165, 3),
View all 29 lines...

==== 2nd LocalScript ====

1local replicatedStorage = game:GetService("ReplicatedStorage")
2local getWarning = replicatedStorage:WaitForChild("getWarning")
3 
4getWarning.OnClientEvent:Connect(function(message)
5    print(message) -- now print because the event is reachable
6end)

In the future, you may want to make sure that the loop isn't stopping the event from listening because the loop typically stops other code lines outside the loop from being activated.

Happy Scripting!

0
If you found this answer helpful then please accept this answer and possibly help others who may look for the same answer. Somone_exe 224 — 4y
0
Oh god I'm so dumb. Thank you so much <3 antvvnio 40 — 4y
Ad

Answer this question