Can you help me with using spaces in scripts?
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:
01 | print ( "VIP T-Shirt Door Script Loaded" ) |
03 | permission = { "YourNameHere" } |
06 | function checkOkToLetIn(name) |
07 | for i = 1 ,#permission do |
10 | if (string.upper(name) = = string.upper(permission [ i ] )) then return true end |
14 | local Door = script.Parent |
15 | function onTouched(hit) |
17 | local human = hit.Parent:findFirstChild( "Humanoid" ) |
18 | if (human ~ = nil ) then |
19 | if human.Parent.**ShirtGraphic**.Graphic = = texture then |
20 | Door.Transparency = 0.7 |
21 | Door.CanCollide = false |
26 | print ( "Human touched door" ) |
28 | elseif (checkOkToLetIn(human.Parent.Name)) then |
29 | print ( "Human passed test" ) |
30 | Door.Transparency = 0.7 |
31 | Door.CanCollide = false |
39 | script.Parent.Touched:connect(onTouched) |
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".