Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a weapon appear again after a while?

Asked by 2 years ago

hi guys, How do I make a weapon appear again after a while? and where do I put the script

0
maybe lookup tutorials on youtube? this isnt the right place to ask for scripts LazokkYT 117 — 2y

1 answer

Log in to vote
0
Answered by
Xyternal 247 Moderation Voter
2 years ago

So put this script in serverscriptservice

local tool = game.Workspace.WaitForChild("tool")
local z = tool:Clone()
while true do

wait (50)
local othertool = z:Clone() -- Double clone it so it stays in the version it was previously made.
othertool.Parent = game.Workspace

othertool.Position = Vector3.new(x,y,z)




end
Ad

Answer this question