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

My Fire doesnt shoot when i press x??

Asked by 5 years ago
Edited 5 years ago

So i am trying to make fire shoot out form my hand through a particle emmitter. I used th repstor to link it through remote events. However, i am just confused on how to make the particles come out of my hand through a script itself. What part do i refrence for the partciles to come out of my hand?

script:

local repstore = game:WaitForChild("ReplicatedStorage")
local Remote = repstore:WaitForChild("FireStart")

Remote.OnServerEvent:Connect(function(player)
    local char = player.Character
    local Fire = workspace["Shoto FIRE"]:Clone()
    Fire.Parent = char.Head
    Fire.Enabled = true


end)
0
do you mean RightHand (or left) instead of head? ihatecars100 502 — 5y

Answer this question