Why Does My Remote Event Script Not Work Properly?
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)
01 | local Next = script.Parent |
02 | local tookoff = game.ReplicatedStorage.TAKEOFF |
03 | local landed = game.ReplicatedStorage.LAND |
05 | tookoff.OnClientEvent:Connect( function () |
07 | Next.Text = "Next Plane In" |
09 | landed.OnClientEvent:Connect( function () |
11 | Next.Text = "Plane Taking Off In" |
first remote event
1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
4 | game.ReplicatedStorage.TAKEOFF:FireClient(player) |
second remote event
1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
4 | game.ReplicatedStorage.LAND:FireClient(player) |