Well once the knife has touched the humanoid, little particle of orbs will come across the torso spilling out orbs, how can I do that?
Use Instance.new()
Example:
local debounce = false script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then if not debounce then debounce = true local newPart = Instance.new("Part") newPart.Parent = game.Workspace newPart.Position = script.Parent.Position end end end)
Edit: I saw your comment, If the part Is In ReplicatedStorage use :Clone() Information: https://developer.roblox.com/en-us/api-reference/function/Instance/Clone