From venuslockscript, 8 Months ago, written in Plain Text.
Embed
  1. while wait(1) do
  2. for i,v in pairs(game:GetService("Workspace").Harvestable.World:GetDescendants()) do -- yea
  3.  if v.Name == "CopperOre" then --example: "Sand", "Stone", "Tree"
  4.    local thing = v -- yea
  5.    local Event = game:GetService("ReplicatedStorage").Events.Harvest.Harvest
  6.    Event:FireServer(thing)
  7.  end
  8. end
  9. end