this is my current script the other partaining code isnt needed.
'''
-- Create an attachment at the player's feet
local attachment = Instance.new("Attachment")
attachment.Position = player.Character.HumanoidRootPart.Position
attachment.Parent = player.Character.HumanoidRootPart
-- Duplicate particle from ReplicatedStorage
local particle = ReplicatedStorage.floorattach:Clone()
particle.Parent = attachment
particle:Emit(10)
-- Destroy particle after a delay
wait(0.5)
attachment:Destroy()
end
'''
** You are now Level 2! **