I made a sinking ship game and i want to send a ship name to a gui that the player can use to see the ship name, but it doesnt change the name when a new ship is selected ive tried to change the script of the gui to a server script it also didn’t work if u are able to help me, Please do it would make the game alot better
Part of the serverScript
CallAndNameEvent:FireAllClients(choosemap.CallSign.Value, choosemap.Name)
Part of the Client Script
local BoatName = ""
local CallSign = ""
game.ReplicatedStorage.ChangeShipCallSign.OnClientEvent:Connect(function(NewCallSign, NewName)
CallSign = NewCallSign
BoatName = NewName
end)