When I use thecommand there is error

When I use thecommand there is error.
local sword= script.Parent
sword.Activated:Connect(function ()
for i=1,8,3 do
print(“PLZ DONT”)
local no = game.Workspace.lol
no:Destroy()
local noo= game.Workspace.Baseplate
noo:Destroy()
end)

You’re missing a end, try this out

sword.Activated:Connect(function()
for i=1,8,3 do
print("PLZ DONT")
local no = game.Workspace.lol
no:Destroy()
local noo= game.Workspace.Baseplate
noo:Destroy()
end
end)