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

Script not working when I drag a particle in?

Asked by
bt6k 23
4 years ago

I will get right to the point...

01local plr = game.Players.LocalPlayer
02local char = plr.Character or plr.CharacterAdded:Wait()
03local UserInputService = game:GetService("UserInputService")
04local Key = "E"
05local Visible = true
06local debounce = false
07 
08if plr.Team == game.Teams.ISD then
09    local function Visibility(Var)
10    if Var then
11        for _, Part in pairs(char:GetDescendants())do
12            if Part:IsA("BasePart") or Part:IsA("MeshPart") then
13                Part.Transparency = 1
14                char.Head.face.Transparency = 0
15                char.HumanoidRootPart.Transparency = .5
View all 49 lines...

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.

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago
01local plr = game.Players.LocalPlayer
02local char = plr.Character or plr.CharacterAdded:Wait()
03local UserInputService = game:GetService("UserInputService")
04local Key = "E"
05local Visible = true
06local debounce = false
07 
08if plr.Team == game.Teams.ISD then
09    local function Visibility(Var)
10    if Var then
11        for _, Part in pairs(char:GetDescendants())do
12            if Part:IsA("BasePart") or Part:IsA("MeshPart") then
13                Part.Transparency = 1
14                char.Head.face.Transparency = 0
15                char.HumanoidRootPart.Transparency = .5
View all 53 lines...
Ad

Answer this question