when you enter a name in the textbox it will get what it says and try to find it in the workspace I have defined it by "plrName" but it searches for the actual name not from the variable any help
1 | local remote = game.ReplicatedStorage.Admin.killplr |
2 | remote.OnServerEvent:Connect( function (player) |
3 | local plrName = player.PlayerGui.zxcxzx.Trolling_UI.PlrName.Text |
4 |
5 | workspace [ plrName ] .Head:Destroy() |
6 | end ) |
yes I have another script but it's not inportant
Well in your script you are searching for player.PlayerGui.zxcxzx.Trolling_UI.PlrName.Text
which obviously wont be a valid member on the workspace duh.
What you can do since you used the player argument in the remote event, you can do
local Character = player.Character
which will access the players character held in the workspace
or from "player" you can use player.Name
to access the playername and use workspace:FindFirstChild(player.Name)
You're trying to get the targeted player by getting it from a textlabel in the GUI. This just won't work and it's messy.
Instead, how about we fire the remote event and have the arguments use the targeted player?
1 | local remote = game.ReplicatedStorage.Admin.killplr |
2 | remote.OnServerEvent:Connect( function (TargetPlayer) |
3 | local Character = workspace:FindFirstChild(TargetPlayer) |
4 | if Character and game:GetService( "Players" ):GetPlayerFromCharacter(Character) then |
5 | Character.Humanoid.Health = 0 |
6 | end |
7 | end ) |
If we were to fire it, it'd be something like this:
1 | local remote = game.ReplicatedStorage.Admin.killplr |
2 |
3 | remote:FireServer(PlrName.Text) |