Script not recieving Remote function

Hello!

I have made two scripts, a server and a local script.

The serverScript invokes a remote function to the client with a for loop.

The local script SHOULD recieve the remote function and print out a simple print statement, confirming that it did recieve the remote function, but it did not. :frowning:

ServerScript: ( the code above the for loop is working, so don’t worry about that)

ReplicatedStorage.CreateServers.CreateServer.OnServerInvoke = function(player)
	 
	print("CreateServer")
	
	local ServerID = tostring(math.random(10000, 99999))
	local ServerEntry = Instance.new("StringValue")
	ServerEntry.Value = ServerID
	ServerEntry.Name = player.Name .. " 's Server"
	ServerEntry.Parent = ListofIds
	

	local ServerName = Instance.new("StringValue")
	ServerName.Name = player.Name.. "'s SERVER"
	ServerName.Value = player.Name.. "'s SERVER"
	ServerName.Parent = ServerScriptService.ServerIDHandler.ServerNames
	-- set the parent as the last property because it's more optimized

	for _, ReceivePlayer in ipairs(game.Players:GetPlayers()) do -- the loop
		game:GetService("ReplicatedStorage").ServerNames:InvokeClient(ReceivePlayer, player.Name, ServerName.Value)
	end

Local script

local Players = game:GetService("Players")
local PlayerNameText = script.Parent.PlayerNameText

game:GetService("ReplicatedStorage").ServerNames.OnClientInvoke = function(player, ServerName)
	-- Invokes in ServerIDHandler
	print(ServerName.Value .. "PLAYERS SCRIPT")
	
end
3 Likes

You are invoking the client using a RemoteFunction, but this is why using :InvokeClient() isn’t recommended, because the client may not always return and your code will yield for extended periods of time. You aren’t returning on the client, return at least something using return.

2 Likes

Something like this?

game:GetService("ReplicatedStorage").ServerNames.OnClientInvoke = function(player, ServerName)
	-- Invokes in ServerIDHandler
	print(ServerName.Value .. "PLAYERS SCRIPT")
	
	if ServerName.Value then
		return true
	else
		return false
	end
end
1 Like

Yes, but there’s a shorthand:

return (ServerName.Value and true) or false
1 Like

Nope the print statement still did not get printed:

game:GetService("ReplicatedStorage").ServerNames.OnClientInvoke = function(player, ServerName)
	-- Invokes in ServerIDHandler
	print(ServerName.Value .. "PLAYERS SCRIPT")
	
	if ServerName.Value then
		return true
	else
		return false
	end
end
1 Like

Add a print statement into the loop and before it. Tell me what it prints.

1 Like

The for loop works

Screenshot 2025-01-03 171426

for _, ReceivePlayer in ipairs(game.Players:GetPlayers()) do
		game:GetService("ReplicatedStorage").ServerNames:InvokeClient(ReceivePlayer, player.Name, ServerName.Value)
		print("for loop")
	end

But the local script doesn’t detect the remote function.

1 Like

Maybe you can use remote event instead of remote function?

1 Like

Ok so the print statement works, but the ServerName.Value is nil.

1 Like

Try using a remote event, like @davidrhee1234 said.

1 Like

ServerName.Value in the client side would be obviously nil. What you sent to the client is the value of the ServerName, not the variable ServerName. So it should be:

print(ServerName.."PLAYERS SCRIPT")

2 Likes

I did use a remote event, as @davidrhee1234 said.

2 Likes

That is the solution, thank you so much!

1 Like

You’re welcome. I’m glad it helped. Don’t forget to mark my post as a solution. :slight_smile:

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.