I am scripting a room giver I have done all the coding that I can possibly do but it says Enter username is not a valid member of Players when I enter their name in the room giver. Heres what I have if you have anything that can help please let me know.
01 | script.Parent.confirm.MouseButton 1 Click:connect( function () |
02 | if script.Parent.errormsg.Text = = "Error: Room not available" then |
03 | warn( "Room not available" ) else |
04 | if game.Players [ script.Parent.username.Text ] then |
05 | game.ServerStorage.ReceptionSystem.RoomsFolder [ "Room" ..script.Parent.roomnum.Text ] .Value = true |
06 | local newVal = Instance.new( "StringValue" , game.ServerStorage.ReceptionSystem.CheckedIn) |
07 | newVal.Name = "Room" ..script.Parent.roomnum.Text |
08 | newVal.Value = game.Players [ script.Parent.username.Text ] .Name |
09 | local newKey = game.ServerStorage.ReceptionSystem.Card:Clone() |
10 | newKey.Parent = game.Players [ script.Parent.username.Text ] .Backpack |
11 | newKey.Name = "Room " ..script.Parent.roomnum.Text |
12 | newKey.CardNumber.Value = script.Parent.roomnum.Text |
13 | script.Parent.confirm.Text = "Checked in!" |
14 | script.Parent.roomnum.Text = "Enter room number" |
15 | script.Parent.username.Text = "Enter username" |
I always get error around line 4
Here is the link for the Screenshot explorer http://www.shorturl.at/eJNV1
From my perspective, it seems you are trying to make a textbook that, when you enter a player's username, it gives them a room. If you are getting the username from the textbook, I recommend getting the TextBox.Text, checking if the text in the textbook is a player, then continue your script.
I didn't write code because of not being able to see the explorer, so I don't know what to look for.
Hopefully this helps, as I am fairly new too scripting.