local plr = game.Players.LocalPlayer
local char = plr.Character or plr.CharacterAdded:Wait()
local humrp = char:WaitForChild("HumanoidRootPart")
local uis = game:GetService("UserInputService")
local debris = game:GetService("Debris")
local ser = game:GetService("ServerStorage")
local parclone = ser:WaitForChild("ParticleEmitter"):Clone()
parclone.Parent = humrp
uis.InputBegan:Connect(function(input, istyping)
if istyping then return end
if input.KeyCode == Enum.KeyCode.E then
parclone.Position = humrp.Position
task.wait(0.0007)
humrp.CFrame = humrp.CFrame * CFrame.new(0,0,10)
end
end)
tthe particle is in serverstorage
the local script is in starterpack