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

Can you help me with using spaces in scripts?

Asked by 11 years ago

I am making a (non-gamepass) VIP door that relies on looking at your shirt's graphic. I followed a WikiHow script for making this possible. I put two stars beside the area that I need help with. My Current script is:

01print ("VIP T-Shirt Door Script Loaded")
02-- list of account names allowed to go through the door.
03permission = { "YourNameHere" } -- This is how many people can still get through, so you don't have to change shirts. You can also have another friend here.
04-- Texture of the VIP shirt.
05texture = "http://www.roblox.com/asset/?id=153038831" -- Go to the wiki below this script to find out how to change the shirt. And paste the link in between the "" marks.
06function checkOkToLetIn(name)
07for i = 1,#permission do
08-- convert strings to all upper case, otherwise we will let in
09-- "Username" but not "username" or "uSERNAME"
10if (string.upper(name) == string.upper(permission[i])) then return true end
11end
12return false
13end
14local Door = script.Parent
15function onTouched(hit)
View all 39 lines...

In the starred area, I need a space in between there so that my world looks in the right place for the graphic of the person's t-shirt who touches the wall. Can you either find a way to add a space? Or I would also be happy to get a script that renames every "Shirt Graphic" to "ShirtGraphic".

2 answers

Log in to vote
2
Answered by
Bebee2 195
11 years ago

A neat thing in Lua is that you can index objects like this:

1if human.Parent['Shirt Graphic'].Graphic == texture then
0
Thanks a lot! I rally needed this to make a VIP door of my own. HECKFURNIOUS 85 — 11y
Ad
Log in to vote
0
Answered by 11 years ago

You can use Parent["Shirt Graphic"].Graphic Note: I did not put a space after "Parent"

Answer this question