The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Planet Mining Simulator script pastebin roblox
By LINK GAME on 2024-09-20 08:00 am | Syntax: LUA | Views: 10



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local RefreshTime = 5 --How many seconds to refresh esp!
  2. local IgnoreOreList = {
  3.   --Here you can change what ores will not be esped! (if the value is true it will ignore this ore)
  4.   ["Clay"] = true,
  5.   ["Coal"] = false,
  6.   ["Ametyst"] = false,
  7.   ["Sapphire"] = false,
  8.   ["Emerald"] = false,
  9.   ["Ruby"] = false,
  10.   ["Bones"] = false,
  11.   ["Life Fruit"] = false,
  12.   ["Crystal Heart"] = false,
  13.   ["Vine Crystal"] = false,
  14.   ["Plantmite"] = false,
  15.   ["Silver"] = false,
  16.   ["Magma Ore"] = false,
  17.   ["Kyanite"] = false,
  18.   ["Meteroid"] = false,
  19.   ["Obsidian"] = false,
  20.   ["Gold"] = false,
  21.   ["Malachite"] = false,
  22.   ["Uranium"] = false,
  23.   ["Atomanium"] = false,
  24.   ["Mythril Ore"] = false,
  25.   ["Palladium"] = false,
  26.   ["Azurite"] = false,
  27.   ["Adamantite"] = false,
  28.   ["Magma Crystal"] = false,
  29.   ["Carnelian"] = false,
  30.   ["Stone"] = false,
  31.   ["Tungsten"] = false,
  32.   ["Iron Ore"] = false,
  33.   ["Chlorophyte"] = false,
  34.   ["Platinum"] = false,
  35.   ["Cloaxium"] = false,
  36.   ["Copper"] = false,
  37.   ["Quartz"] = false,
  38.   ["Nephrite"] = false,
  39.   ["Mesolite"] = false,
  40.   ["Orpiment"] = false,
  41.   ["Halographic Ore"] = false,
  42.   ["Meteroid"] = false,
  43.   ["Moonrite"] = false,
  44.   ["Moonrite Ore"] = false,
  45.   ["Metal Core"] = false,
  46.   ["Moon Crystal"] = false,
  47.   ["Aluminium"] = false,
  48.   ["Hardened Meteorite"] = false,
  49.   ["Radioactive Obsidian"] = false,
  50.   ["Coesite"] = false,
  51.   ["Kernite"] = false,
  52.   ["Luminite"] = false,
  53.   ["Zinc"] = false,
  54.   ["Diamonium"] = false,
  55. }
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. while wait(RefreshTime) do
  64. for i,v in pairs(game:GetService("Workspace").Mine.Ores:GetChildren()) do
  65. pcall(function()
  66. if not IgnoreOreList[v.Name] then
  67. local pog = v:FindFirstChildOfClass("MeshPart")
  68. if not pog:FindFirstChild("KSIUJKSLNMIKBVUKLSIAUIVBKA")then
  69.   local BillboardGui = Instance.new("BillboardGui")
  70.   local TextLabel = Instance.new("TextLabel")
  71.   BillboardGui.Parent = v:FindFirstChildOfClass("MeshPart")
  72.   BillboardGui.Name = "KSIUJKSLNMIKBVUKLSIAUIVBKA"
  73.   BillboardGui.AlwaysOnTop = true
  74.   BillboardGui.LightInfluence = 1
  75.   BillboardGui.Size = UDim2.new(0, 50, 0, 50)
  76.   BillboardGui.StudsOffset = Vector3.new(0, 0, 0)
  77.   TextLabel.Parent = BillboardGui
  78.   TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  79.   TextLabel.BackgroundTransparency = 1
  80.   TextLabel.Size = UDim2.new(1, 0, 1, 0)
  81.   TextLabel.Text = v.Name
  82.   TextLabel.TextColor3 = v:FindFirstChildOfClass("MeshPart").Color
  83.   TextLabel.TextScaled = true
  84. end
  85. end
  86. end)
  87. end
  88. end