Script not working when I drag a particle in?
I will get right to the point...
01 | local plr = game.Players.LocalPlayer |
02 | local char = plr.Character or plr.CharacterAdded:Wait() |
03 | local UserInputService = game:GetService( "UserInputService" ) |
08 | if plr.Team = = game.Teams.ISD then |
09 | local function Visibility(Var) |
11 | for _, Part in pairs (char:GetDescendants()) do |
12 | if Part:IsA( "BasePart" ) or Part:IsA( "MeshPart" ) then |
14 | char.Head.face.Transparency = 0 |
15 | char.HumanoidRootPart.Transparency = . 5 |
16 | char.Humanoid.WalkSpeed = 40 |
18 | local smoke = game.Lighting:WaitForChild( "Smoke" ):Clone() |
24 | for _, Part in pairs (char:GetDescendants()) do |
25 | if Part:IsA( "BasePart" ) or Part:IsA( "MeshPart" ) then |
27 | char.Head.face.Transparency = 0 |
28 | char.HumanoidRootPart.Transparency = 0 |
29 | char.Humanoid.WalkSpeed = 16 |
31 | char.Head.Smoke:Destroy() |
37 | UserInputService.InputBegan:Connect( function (Input,GameStuff) |
38 | if GameStuff then return end |
39 | if Input.KeyCode = = Enum.KeyCode [ Key ] then |
So basically, there is my head obv.. and this script is making me invisible. Now, once in the for loop, I make it so it makes one smoke particle from lighting get dragged into my head. The problem is, I took this script from youtube and attempted to modify it, and I think I broke it.. Can anyone explain to me what is going on in this script and how I could possibly make it so during the for loop where it is cycling through my body making it invisible, I could once, put a particle emitter in, then once that cycle has finished rotating, the next cycle removes that particle emmiter, and the process repeats, how many times you input the key, "E".
If you cannot tell aswell, this is cloning it from the Lighting, which the Smoke IS IN.