How to add a variable that is out of its section of code

Hello!

I am trying to use a variable out of section of code because the variable can only be used in that section of code.

ServerName is the variable.
I want to move it from this section of code:

game:GetService("ReplicatedStorage").ServerNames.OnClientEvent:Connect(function(player, ServerName)
	-- Invokes in ServerIDHandler
	print(ServerName .. "PLAYERS SCRIPT")
	
	
	
end)

To this one: (they are in the same local script)

game.ReplicatedStorage.CloseFunction.LeaveServer.OnClientEvent:Connect(function(player)
		
	
		
	local PlayerTextClone = script.Parent:FindFirstChild(player.Name)
		
	PlayerTextClone:Destroy()
	
end)
1 Like

I don’t think you can move a variable from a server to a client… But you can pass out values.
What do you want to do by moving a variable? Maybe there is an alternative way to achieve that.

Both of the sections of code are located in the same script

Full local script:

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

game:GetService("ReplicatedStorage").ServerNames.OnClientEvent:Connect(function(player, ServerName)
	-- Invokes in ServerIDHandler
	print(ServerName .. "PLAYERS SCRIPT")
	
	
	
end)

game.ReplicatedStorage.CreateServers.CreateServerPlayer.OnClientEvent:Connect(function()

	print("recieved")
	PlayerNameText.Text = Players.LocalPlayer.Name
	PlayerNameText:Destroy()
end)

game.ReplicatedStorage.JoinServers.JoinServerPlayer.OnClientEvent:Connect(function(plrname) 
	print(tostring(plrname)) 
	local playerTextClone = PlayerNameText:Clone()
	playerTextClone.Text = tostring(plrname)
	playerTextClone.Parent = script.Parent
	playerTextClone.Name = plrname
	
end)
	
game.ReplicatedStorage.CloseFunction.LeaveServer.OnClientEvent:Connect(function(player)
		
	
		
	local PlayerTextClone = script.Parent:FindFirstChild(player.Name)
		
	PlayerTextClone:Destroy()
	
end)

You should be able to use a serverName parameter on this method too, assuming it’s coming from the same area that holds the value of serverName:

game.replicatedstorage.closefunction.leaveserver.onclientevent:Connect(function(player, serverName)

If I did that ServerName would be nil, since it is coming from a different remote event with only the player parameter.

Right, I’m saying to add the parameter and pass serverName into it from the source that’s calling the remote event.

So how would I do that? Add it to the original script.

Would have to see the server side code that’s calling the remote. It depends on how you’re managing the value of serverName.

But if the 2nd remote is in the same file/context as where you’re calling the first remote (that passes in serverName), then it should work.

If it’s not in the same place, you would need to get that serverName value first before passing it into the 2nd remote.

You can do that a number of ways, depending on how your file structure is set up.

If you can’t have both remotes in the same file as the serverName, the simplest way would be to set up a function on the file that has serverName called “M.getServerName()” and have it return serverName to whatever calls the function, whether it’s via a ModuleScript or through a bindable function.

Here is the server script that handles the remote events.

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
		game:GetService("ReplicatedStorage").ServerNames:FireClient(ReceivePlayer, player.Name, ServerName.Value)
		print("for loop")
	end

Sorry, I assumed serverName was a single value persisting somewhere on your server.

Correct me if I’m wrong:

It looks like you’re creating a stringValue of serverName containing each user’s name appended with “‘S SERVER”, but you’re parenting them to the ServerNames folder, and trying to fire them from there?

You’ll want a table called something like “playerServers” inside of a file that you could call and manage for something like that.

Let me ask this: What’s the objective here? What is the goal of firing a serverName stringValue consisting of “USER’S SERVER” to a user’s client?

Are you doing anything specific with those server names on the server side? Or are you just wanting to have each client store a server name value of “USER’S SERVER”?

On your first statement, no ServerNames is also a folder.

image_2025-01-03_192331869

For your third statement, my goal was to check if the remote event recieves it and it does, my GOAL NOW (sry caps) is to find out a way to have the same variable in different sections of code. So like I want to display the ServerName in the closefunction.LeaveServer bit, but I can’t do that since it is at


game:GetService("ReplicatedStorage").ServerNames.OnClientEvent:Connect(function(player, ServerName)
	-- Invokes in ServerIDHandler
	print(ServerName .. "PLAYERS SCRIPT")
	
	
	
end)

So how do i have the same variable in a different section of code.

Gotcha, my mistake. Ive found adding “Remote” to the end of remote events for can help with readability/collaboration and avoid confusion.

Ok so if you’re just simply trying to interact with the serverName from inside that function, you just need to be able to access it, whether it’s passed in or referenced from elsewhere. You don’t even need to pass it in the second remote event, you can just store it on the client when it’s passed in through the first remote event:


local Players = game:GetService("Players")
local PlayerNameText = script.Parent.PlayerNameText
- - new serverName variable
local myServerName


 game:GetService("ReplicatedStorage").ServerNames.OnClientEvent:Connect(function(player, ServerName)
	-- Invokes in ServerIDHandler
	print(ServerName .. "PLAYERS SCRIPT")
	
	- - set new serverName here
      myServerName = ServerName
	
end)

And then you can call it from your other function:

game.ReplicatedStorage.CloseFunction.LeaveServer.OnClientEvent:Connect(function(player)
		
     - - Do something with myServerName here
		
	local PlayerTextClone = script.Parent:FindFirstChild(player.Name)
		
	PlayerTextClone:Destroy()
	
end)

(Apologies for the bad code formatting, I’m on mobile right now)

Worth mentioning that if all server names will just be “USER’S SERVER” to display on the client, you don’t actually have to pass them from the server if you don’t plan on doing anything else with them there. You can just write a script on your client init file that saves the value on the client when they connect.

1 Like

Thank you so much for helping!!!

1 Like

Hey no problem, happy to help! :wave:

1 Like

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