How do I position a rock effect like this
, I tried doing that but this happenedgame.ReplicatedStorage.U.OnServerEvent:Connect(function(plr)
local c = plr.Character
local HMRP = c:WaitForChild("HumanoidRootPart")
local Part = game.ReplicatedStorage.Yes:GetChildren()
for i = 1,#Part do
Part[i]:Clone()
Part[i].CFrame = HMRP.CFrame*CFrame.new(0,-2,0)
Part[i].Parent = workspace
end
end)