Script clones the particles of smoke into torso according to team,but doesn't work pressing Q?
Asked by
4 years ago Edited 4 years ago
02 | local UserInputService = game:GetService( "UserInputService" ) |
03 | local plr = game.Players.LocalPlayer |
04 | local char = plr.Character or plr.CharacterAdded:Wait() |
05 | local charname = char.Name |
08 | UserInputService.InputBegan:Connect( function (input) |
09 | if input.KeyCode = = Enum.KeyCode.Q then |
10 | if plr.Team.Name = = ( "Foundation Personnel" ) or plr.Team.Name = = ( "Internal Security Department" ) then |
11 | local cloneSmoke = game.ServerStorage:WaitForChild( "Smoke" ) |
12 | local cloneSmoke 2 = cloneSmoke:Clone() |
13 | cloneSmoke 2. Parent = char.UpperTorso |
14 | local poofsound = game.ServerStorage [ "Poof sound" ] :Clone() |
15 | poofsound.Parent = char.UpperTorso |
18 | cloneSmoke.Enabled = false |
I don't see why it wouldn't work..