I am making a Holo Training Place and I need some help,anyone please correct me? [closed]
So I want to make a training place and so far I have this:
01 | game.Players.ChildAdded:connect( function (player) |
02 | player.Chatted:connect( function (chat) |
03 | if player:GetRankInGroup(config.GroupId.Value) > = config.RankId.Value then |
04 | if string.lower(chat) = = "sf" then |
05 | if not game.Workspace:FindFirstChild( "Thing" ) then |
06 | game.Lighting.Thing:Clone().Parent = game.Workspace |
08 | elseif string.lower(chat) = = "close sf" then |
09 | if game.Workspace:FindFirstChild( "Thing" ) then |
10 | game.Workspace.Thing:Remove() |
Marked as Duplicate by Perci1 and BlueTaslem
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?