View difference between Paste ID: d3da8Rka and LcPnjaJi
SHOW: | | - or go back to the newest paste.
1
local mouse = game.Players.LocalPlayer:GetMouse()
2
3
mouse.KeyDown:connect(function(key)
4
	if key=="f" then
5
		local target = game.Players.LocalPlayer.Character --Put the thing you want to clone here,
6
target.archivable = true
7
local c = target:Clone()
8
c.Parent = workspace
9-
local s = Instance.new("Sound", target.Torso)
9+
local s = Instance.new("Sound", target)
10
s.SoundId = "rbxassetid://1046591724"
11-
s.Volume = 1
11+
s.Volume = math.huge
12
s:Play()
13-
wait(1)
13+
wait(2)
14
s:Remove()
15
	end
16
end)