Brookhaven
Brookhaven 🏡RP
2mo ago
Description
--// Efeito Pica (visual)
local camera = workspace.CurrentCamera
local function tremerTela()
for i = 1, 10 do
camera.CFrame = camera.CFrame * CFrame.new(
math.random(-1,1)/10,
math.random(-1,1)/10,
0
)
task.wait(0.02)
end
end
local function picaEfeito()
print("🐦 PICANDO!!!")
-- som
local som = Instance.new("Sound", workspace)
som.SoundId = "rbxassetid://9118823100"
som.Volume = 2
som:Play()
-- tremida
tremerTela()
game.Debris:AddItem(som, 2)
end





Comments
No comments yet
Be the first to share your thoughts!