Doesn’t work I want it to replace the player and the only way I’ve found how to do this is to teleport it to them. I want it to appear as a magic power for like 5 seconds and disapear.
local Debris = game:GetService("Debris")
local spawnedPart = game.ServerStorage:WaitForChild("SpinGreen")
game.Players.PlayerAdded:Connect(function(player)
local character = player.CharacterAdded:Connect(function(character)
local spawnPart = spawnedPart:Clone() do
spawnPart:PivotTo(character:GetPivot())
spawnPart.Parent = workspace
end
Debris:AddItem(spawnPart, 5)
end)
end)
Also, do you want the player visible while the part is there or no?