Hello! So, Im wondering how you would clone a part to a specific position (in particular the players current position). Is there any way that I could change my script to clone a part to the players position?
local debounce = false
local yes = 5
local tool = script.Parent.Parent
tool.Activated:Connect(function()
print(“running”)
if debounce == false then
debounce = true
yes = 5
game.ReplicatedStorage.Fire:Clone().Parent = game.Workspace
print(yes)
end
wait(2)
debounce = false
end)