Advertisement
Aura_Exploits

Untitled

Jan 21st, 2023
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.16 KB | None | 0 0
  1. local zlib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Zet-a/RobIox/main/LibrarySnippet.lua"))()
  2. local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/wally-rblx/LinoriaLib/main/Library.lua"))()
  3. local rocks = workspace.World.RockRegions
  4. local selected = "Mythril"
  5. local ores = {
  6. Magnetite = {
  7. ["rbxassetid://12100885933"] = BrickColor.new("Bright violet")
  8. },
  9. ["Rosa Quartz"] = {
  10. ["rbxassetid://12100886051"] = BrickColor.new("Carnation pink")
  11. },
  12. Mythril = {
  13. ["rbxassetid://12100886066"] = BrickColor.new("Med. bluish green"),
  14. ["rbxassetid://12100886051"] = BrickColor.new("Med. bluish green"),
  15. ["rbxassetid://12100886068"] = BrickColor.new("Med. bluish green")
  16. },
  17. Gold = {
  18. ["rbxassetid://12100885942"] = BrickColor.new("Br. yellowish orange"),
  19. ["rbxassetid://12100885949"] = BrickColor.new("Br. yellowish orange"),
  20. ["rbxassetid://12100885963"] = BrickColor.new("Br. yellowish orange")
  21. },
  22. Iron = {
  23. ["rbxassetid://12100886003"] = BrickColor.new("Dark grey"),
  24. ["rbxassetid://12100886012"] = BrickColor.new("Dark grey"),
  25. ["rbxassetid://12100886011"] = BrickColor.new("Dark grey")
  26. },
  27. Pyrite = {
  28. ["rbxassetid://12100885937"] = BrickColor.new("Flame yellowish orange"),
  29. ["rbxassetid://12100885933"] = BrickColor.new("Flame yellowish orange"),
  30. ["rbxassetid://12100885936"] = BrickColor.new("Flame yellowish orange")
  31. },
  32. Quartz = {
  33. ["rbxassetid://12100886068"] = BrickColor.new("Institutional white"),
  34. ["rbxassetid://12100886066"] = BrickColor.new("Institutional white"),
  35. ["rbxassetid://12100886051"] = BrickColor.new("Institutional white")
  36. },
  37. Tin = {
  38. ["rbxassetid://12100886049"] = BrickColor.new("Light stone grey"),
  39. ["rbxassetid://12100886035"] = BrickColor.new("Light stone grey"),
  40. ["rbxassetid://12100886020"] = BrickColor.new("Light stone grey")
  41. },
  42. Copper = {
  43. ["rbxassetid://12100885998"] = BrickColor.new("Flame reddish orange"),
  44. ["rbxassetid://12100885960"] = BrickColor.new("Flame reddish orange"),
  45. ["rbxassetid://12100885958"] = BrickColor.new("Flame reddish orange")
  46. },
  47. }
  48.  
  49. local function hasProperty(object, prop)
  50. local success = pcall(function()local temp = object[prop]end)
  51. return success
  52. end
  53.  
  54. local function addOre(ore)
  55. if hasProperty(ore, "CanCollide") and ore.CanCollide == false then
  56. for i, v in pairs(ores) do
  57. for o, b in pairs(v) do
  58. if --[[ tostring(ore.MeshId) == o and ]] ore.BrickColor == b then
  59. --[[ zlib:box(ore.Parent.Parent, i, {
  60. Color = b.Color,
  61. }) ]]
  62. zlib:text(ore.Parent.Parent, -2, 0, i .. "title", {
  63. Text = i,
  64. Visible = false,
  65. Outline = true,
  66. OutlineColor = Color3.fromRGB(0, 0, 0),
  67. Color = b.Color,
  68. Center = true,
  69. Font = 2,
  70. })
  71. end
  72. end
  73. end
  74. end
  75. end
  76.  
  77. for _, v in pairs(rocks:GetDescendants()) do
  78. addOre(v)
  79. end
  80. rocks.DescendantAdded:Connect(function(v)
  81. addOre(v)
  82. end)
  83.  
  84. local window = lib:CreateWindow({
  85. Title = "Obsidian (Oaklands)",
  86. Center = true,
  87. AutoShow = true,
  88. })
  89.  
  90. local Tabs = {
  91. Main = window:AddTab("Main"),
  92. }
  93.  
  94. local mainleftgroupbox = Tabs.Main:AddLeftGroupbox("Automatic stuff")
  95. mainleftgroupbox:AddDropdown("SelectOre", {
  96. Values = { "Magnetite", "Rosa Quartz", "Mythril", "Gold", "Iron", "Pyrite", "Quartz", "Tin", "Copper" },
  97. Default = 1,
  98. Multi = false,
  99. Text = "Ores",
  100. Tooltip = "Click the type of ore to show edit its title or box visibility.",
  101. })
  102. --[[ mainleftgroupbox:AddToggle("ShowBox", {
  103. Text = "Show Box",
  104. Default = false,
  105. Tooltip = "Shows esp box",
  106. }) ]]
  107. mainleftgroupbox:AddToggle("Showtitle", {
  108. Text = "Show Title",
  109. Default = false,
  110. Tooltip = "Shows esp title",
  111. })
  112. --[[ Toggles.ShowBox:OnChanged(function()
  113. __Variables[selected] = Toggles.ShowBox.Value
  114. end) ]]
  115.  
  116. Toggles.Showtitle:OnChanged(function()
  117. __Variables[selected .. "title"] = Toggles.Showtitle.Value
  118. end)
  119.  
  120. Options.SelectOre:OnChanged(function()
  121. selected = Options.SelectOre.Value
  122. local title = __Variables[selected .. "title"] -- quick fix
  123. --[[ local box = __Variables[selected] -- quick fix ]]
  124. Toggles.Showtitle:SetValue(title)
  125. --[[ Toggles.ShowBox:SetValue(box) ]]
  126. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement