Your script is a bit messy, but don’t worry i’ll show you how to make this clean. First of all you’re diffentley gonna need remote events, because as you did in your script. You just named a certain player that you knew his name, what if another player joined, and he’s name isn’t like yours, it wouldn’t work for him, it will work just for the player you refernced, you want it to work for all players, that’s why you’ll need to use LocalPlayer
, and LocalPlayer refers to each client, but it will refer to the client that is currently having the script work; if you wanna simplyfiet, it will pretty much work for any player, also the Instance.new()
part is kind of mest up too. So let’s starting fixing everything.
Remote Events
Now we got remote events, let me explain these. Remote Events
are used to communicate between a client and a server, the client is the player that is currently playing, or pretty much all players, and the server, is roblox, (the server connects between all clients).
Now when we need to use these? As I said, when we want a communication between server and client, when we want to exchange information beween them. So for example, in a Server script (which is the normal script) you cant use LocalPlayer
, because local player is a local thing, it wouldn’t make sense to refer to it from the server. But we can from the client, so we need to transfer it from the client to the server. And that is pretty much the most common thing that you’d want to use remote events for. And that is exactly our case here.
Remote Events are always placed in ReplicatedStorage
, if you’re wondering why, as I said the server has his limitaions, and the client (or local side) has his own limitaions, there are certain places and things that the client can do while the server can’t, and vise-versa. If we put our remote event inside PlayerGui, that wouldn’t make sense, because that place is local, and it can be only accessed from a local script. That’s why we need to put our remote event in a place where both the server and the client can access, and ReplicatedStorage is the place for that, because it is accessed by both. (workspace can work too, but that wouldn’t be efficient).
And of course when using remote events, you need to have one same remote event connecting the local and server script, that’s why sometimes you may have multiple remotes for multiple actions and communications.
And remote events aren’t only a Server/Client communication, they are also a Server/AllClients and a Client/Client.
We also got RemoteFunctions
, which aren’t that different but have a not so similar way of working.
And that’s really it in terms of explaining. I didn’t explain as much as I wanted because I wanted to keep this as simple as your question.
But here is more info, this is a good document on them.
But now let’s go to the scripting part.
First insert a Remote Event
that we will use
01 | This will be your local script |
03 | local player = game.Players.LocalPlayer |
04 | local remote = game.ReplicatedStorage:WaitForChild( "RemoteEvent" ) |
09 | remote:FireServer(player, 15212 , true , var) |
Now this is the server script
1 | local remote = game.ReplicatedStorage:WaitForChild( "RemoteEvent" ) |
5 | Remote.OnServerEvent:Connect( function (plr, num, bool, var) |
And that’s it, you’ll see that it printed the local player succefully.
The Script
Now this will be your script, don’t use the second argument for Instance.new()
which represents the parent, it is deprecated (which means outdated) but you can still use it, but it is kind of no efficient.
And as we said we’re gonna use remoteevents.
02 | local remote = game.ReplicatedStorage:WaitForChild( "RemoteEvent" ) |
03 | local player = game.Players.LocalPlayer |
05 | remote:FireServer(player) |
09 | local remote = game.ReplicatedStorage:WaitForChild( "RemoteEvent" ) |
11 | remote.OnServerEvent:Connect( function (player) |
12 | local screengui = Instance.new( "ScreenGui" ) |
13 | screengui.Parent = player:WaitForChild( "PlayerGui" ) |
14 | local textlabel = Instance.new( "TextLabel" ) |
15 | textlabel.Parent = player.PlayerGui.ScreenGui |
16 | textlabel.Name = "Hello World!" |
17 | textlabel.Font = "Highway" |
And that’s it!
You may skip btw, by simply using the .PlayerAdded
event, so yeah this is all pointless xd. But it is cooler this way.
Anyways this is it.
1 | game.Players.PlayerAdded:Connect( function (player) |
2 | local screengui = Instance.new( "ScreenGui" ) |
3 | screengui.Parent = player:WaitForChild( "PlayerGui" ) |
4 | local textlabel = Instance.new( "TextLabel" ) |
5 | textlabel.Parent = player.PlayerGui.ScreenGui |
6 | textlabel.Name = "Hello World!" |
7 | textlabel.Font = "Highway" |
So yeah, that’s it!
Happy to help, I hope that was a good explanation.