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

Strange Method Problem

Asked by 11 years ago

I'm making a Terminal and you have to touch a part to activate it. I know why my code isn't working - It's because 'playername' isn't a child of Players. What I am trying to do is make the part that touched the capture point be put into a string and the value of the string is what is searches for in 'game.Players'. There is a String inside the parent of the script that the name appears in when you step on it.

01cap = script.Parent
02playername = script.Parent.PlayerName
03playersname = playername.Value
04 
05while true do
06cap.Touched:connect(function(player)
07 
08script.Parent.PlayerName.Value = player.Parent.Name
09local Touchy = game.Players.playersname
10 
11    if Touchy.TeamColor == BrickColor.new("Bright red") then
12        print "Raider"
13    end
14end)
15wait(0.5)
16end

Please help.

2 answers

Log in to vote
3
Answered by 11 years ago
01cap = script.Parent
02playername = script.Parent.PlayerName
03 
04-- no while here, due to how events work
05cap.Touched:connect(function(player)
06playername.Value = player.Name
07local Touchy = game.Players:findFirstChild(playername.Value) -- use the FindFirstChild method
08if not Touchy then print('No player found') return end
09    if Touchy.TeamColor == BrickColor.new("Bright red") then
10            print "Raider"
11    end
12end)

This having been said, you don't need a stringValue for that: just use

1cap = script.Parent
2playername = script.Parent.PlayerName
3 
4cap.Touched:connect(function(player)
5    if player == BrickColor.new("Bright red") then
6            print "Raider"
7    end
8end)
1
Hope i helped :) Hippalectryon 3 — 11y
0
Thankyou - That was very useful. Protoduction 216 — 11y
0
Remember to click "Accept Answer" if it helped you. Aethex 256 — 11y
0
I did! Protoduction 216 — 11y
Ad
Log in to vote
0
Answered by 11 years ago

To find a player with a name matching the specific string you've got, you must either use

FindFirstChild

or

1game.Players["Owenrules12"]

Answer this question