12 lines
335 B
Lua
12 lines
335 B
Lua
--[[if workspace:FindFirstChild("Sound") then
|
|
workspace:FindFirstChild("Sound"):Remove()
|
|
end
|
|
Sound = Instance.new("Sound")
|
|
Sound.Pitch = 1
|
|
Sound.Volume = 1
|
|
Sound.SoundId = "http://roblox.com/Asset?id=27697298"
|
|
Sound.Parent = workspace
|
|
Sound:Play()
|
|
if workspace:FindFirstChild("Baseplate") then
|
|
workspace.Baseplate.Name = "Base"
|
|
end]]-- |