Why is the trial not attaching to the player? The attachments are in the right spots? It works when it is on a rig but not the player?
game.ReplicatedStorage.Abilites.Speed.OnServerEvent:Connect(function(plr)
local neweffect = game.ReplicatedStorage.Speedefect.ParticleEmitter:Clone()
local Topattachment = game.ReplicatedStorage.Speedefect.TopAttachment:Clone()
local Bottomattachment = game.ReplicatedStorage.Speedefect.BottomAttachment:Clone()
neweffect.Parent = plr.Character.HumanoidRootPart
Topattachment.Parent = plr.Character.HumanoidRootPart
Bottomattachment.Parent = plr.Character.HumanoidRootPart
plr.Character:FindFirstChild("Humanoid").WalkSpeed = 32
task.wait(55555)
neweffect:Destroy()
Topattachment:Destroy()
Bottomattachment:Destroy()
plr.Character.Humanoid.WalkSpeed = 16
end)
Video: