Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

how do i make a text box transfer to a string value?

Asked by 5 years ago

so i think i'm on the right track but this is confusing me

01x = game.Workspace.Baseplate
02 
03player = script.Parent.Parent.TextBox.Value.Value
04 
05function clear()
06    if player == player then
07        --some code here
08end
09 
10script.Parent.MouseButton1Click:Connect(clear)

what i want is to make this select a player by typing it into the box and then i can kill that player, i don't need a kill script i just need to know how to make this work. sorry if this didn't make sense. thanks for reading.

2 answers

Log in to vote
1
Answered by
3wdo 198
5 years ago
01x = game.Workspace.Baseplate
02 
03player = script.Parent.Parent.TextBox.Value -- you put value.value
04 
05function clear()
06    if player == player then
07        --some code here
08end
09 
10script.Parent.MouseButton1Click:Connect(clear)
0
well maybe the stringvalue is called "value" bluzorro 417 — 5y
Ad
Log in to vote
0
Answered by
Elixcore 1337 Moderation Voter
5 years ago
Edited 5 years ago
1script.Parent.MouseButton1Click:Connect(function() -- connect to event
2player = game.Players:FindFirstChild(script.Parent.Parent.TextBox.Text) -- try to find the player with the name specified in the textbox
3 
4    if player then -- check if player exists
5    player.Character:BreakJoints() -- kill player
6    end
7end)

Oh yeah by the way this won't work cos of a few reasons.

If this is a localscript, you cannot kill other players. if this is a serverscript, you cannot see the text changed by the client, or connect to the event.

Answer this question