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

Why Does My Remote Event Script Not Work Properly?

Asked by 5 years ago

I have a script which is supposed to change a text box's text depending on what block you touch but it isn't working there are no errors in the output bar and nothing seems wrong can you help me fix this?

first script (changing text)

01local Next = script.Parent -- text box
02local tookoff = game.ReplicatedStorage.TAKEOFF -- remote event 1
03local landed = game.ReplicatedStorage.LAND -- remote event 2
04 
05tookoff.OnClientEvent:Connect(function() -- check for event fire
06    print("took off") -- print text
07    Next.Text = "Next Plane In" -- change text
08end)
09landed.OnClientEvent:Connect(function() -- check for event fire
10    print("landed") -- print text
11    Next.Text = "Plane Taking Off In"-- change text
12end)

first remote event

1script.Parent.Touched:Connect(function(hit) -- touch
2    if hit.Parent:FindFirstChild("Humanoid") then -- check for humanoid
3        local player = game.Players:GetPlayerFromCharacter(hit.Parent) -- set player
4        game.ReplicatedStorage.TAKEOFF:FireClient(player) -- fire event
5    end
6end)

second remote event

1script.Parent.Touched:Connect(function(hit) -- touch
2    if hit.Parent:FindFirstChild("Humanoid") then-- check for humanoid
3        local player = game.Players:GetPlayerFromCharacter(hit.Parent) -- set player
4        game.ReplicatedStorage.LAND:FireClient(player)-- fire event
5    end
6end)

Answer this question