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

event:FireAllClients() doesn't work for my script... Anyone could help me?

Asked by
JoneXI 51
5 years ago
Edited 5 years ago

Hello, There is a health value, whenever you touch a spike it lowers for 1. I have this script(Serverscript):

1while test == true do wait()
2    if health.Value < 2 then
3        event1:FireAllClients()
4        test = false
5    end
6end

If on line 3 I do a print("something") It prints it once, everything is fine, but if I do remoteEvent it doesn't work... Local script:

1event1.OnClientEvent:Connect(function()
2    script.Parent.Parent.health1.Visible = false
3end)

Thank you.

2
Make it print on the remote event function, and see if it prints. User#32819 0 — 5y
0
What happen when the script run? Block_manvn 395 — 5y
0
Yea, it prints. That means the problem is in the local script's line 2, but I dont get what's the problem :d JoneXI 51 — 5y
0
can you send me a picture of your explorer? include all the things mentioned in the script above guest_20I8 266 — 5y
View all comments (3 more)
0
Yea, I could but I cant send any pictures here or at Roblox, Maybe u could give me your Discord? JoneXI 51 — 5y
0
Nvm it worked JoneXI 51 — 5y

1 answer

Log in to vote
0
Answered by
JoneXI 51
5 years ago

Also here is the full script:

01local event = game:GetService("ReplicatedStorage").Health
02local event1 = game:GetService("ReplicatedStorage").Health1
03local test = true
04 
05local debounce = false
06game.Players.PlayerAdded:Connect(function(player)
07 
08    local health = Instance.new("IntValue", player)
09    health.Name = "Health"
10    health.Value = 3
11 
12 
13 
14 
15    for i,v in pairs(workspace.Spikes:GetChildren()) do
View all 40 lines...

And a picture of the explorer https://prnt.sc/rqa8ky

Ad

Answer this question