Advertisement
2AreYouMental110

WorldCraft (WIP)

Aug 21st, 2022 (edited)
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.86 KB | None | 0 0
  1. -- this script is discontinued, if you want a script simmilar, go to minerscave
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8. -- big credit to jmuse for part of killaura and no fall damage
  9.  
  10. -- https://web.roblox.com/games/6245143799/WorldCraft
  11.  
  12. getgenv().killaura = false
  13. getgenv().placeholder1 = false
  14.  
  15. local selectedoption
  16. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  17. local Window = Library.CreateLib("WorldCraft/Minerscave", "Sentinel")
  18.  
  19. local A = Window:NewTab("Main")
  20. local A1 = A:NewSection("Main")
  21.  
  22. local list = {
  23.  
  24. }
  25.  
  26. table.clear(list)
  27.  
  28. local drpdwn = A1:NewDropdown("all blocks", "im not manually doing that", {"placeholder for update thing"}, function(value1)
  29.     selectedoption = value1
  30.     print(selectedoption)
  31. end)
  32.  
  33. A1:NewButton("show selected blocks", "might lag hard", function()
  34.     game:GetService("StarterGui"):SetCore("SendNotification", {
  35.     Title = "some info",
  36.     Text = ("most blocks dont have color")
  37.     })
  38.     local folder = Instance.new("Folder")
  39.     folder.Parent = game.CoreGui
  40.     folder.Name = "selected block esp things"
  41.     for i,v in pairs(game:GetDescendants()) do
  42.         if v.Name == (selectedoption) then
  43.             local box = Instance.new("BoxHandleAdornment")
  44.             box.Parent = game:GetService("CoreGui")["selected block esp things"]
  45.             box.Color3 = v.Color
  46.             box.Size = v.Size
  47.             box.ZIndex = 10
  48.             box.Adornee = v
  49.             box.Name = v.Name
  50.             box.AlwaysOnTop = true
  51.             box.Visible = true
  52.             box.Transparency = 0.5
  53.         end
  54.     end
  55. end)
  56.  
  57.  
  58. A1:NewButton("stop showing selected blocks", "might lag hard", function()
  59.     for i,v in pairs(game.CoreGui:GetChildren()) do
  60.         if v.Name == "selected block esp things" then
  61.             v:Destroy()
  62.         end
  63.     end
  64. end)
  65.  
  66.  
  67. A1:NewButton("set spawn point", "yo a guy spawned on the same block 12 times", function()
  68.     local A_1 = Vector3.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame)
  69.     local Event = game:GetService("ReplicatedStorage").GameRemotes.SetBedPos
  70.     Event:InvokeServer(A_1)
  71. end)
  72.  
  73. A1:NewButton("show ores", "guys these are legit", function()
  74.     game:GetService("StarterGui"):SetCore("SendNotification", {
  75.     Title = "some info",
  76.     Text = ("lava = orange, ruby = red, so dont confuse those")
  77.     })
  78.     for i,v in pairs(game.CoreGui:GetChildren()) do
  79.         if v.Name == "block esp things" then
  80.             v:Destroy()
  81.         end
  82.     end
  83.     local folder = Instance.new("Folder")
  84.     folder.Parent = game.CoreGui
  85.     folder.Name = "block esp things"
  86.     for i,v in pairs(game.Workspace:GetDescendants()) do
  87.         if v.Name == "CoalOre" or v.Name == "RainbowiteOre" or v.Name == "RubyOre" or v.Name == "GoldOre" or v.Name == "DiamondOre" or v.Name == "IronOre" then
  88.             local box = Instance.new("BoxHandleAdornment")
  89.             box.Parent = folder
  90.             box.Color3 = v.Color
  91.             box.Size = v.Size
  92.             box.ZIndex = 10
  93.             box.Adornee = v
  94.             box.Name = v.Name
  95.             box.AlwaysOnTop = true
  96.             box.Visible = true
  97.             box.Transparency = 0.5
  98.         end
  99.     end
  100. end)
  101.  
  102. A1:NewButton("stop showing ores", "ayo", function()
  103.     for i,v in pairs(game.CoreGui:GetChildren()) do
  104.         if v.Name == "block esp things" then
  105.             v:Destroy()
  106.         end
  107.     end
  108. end)
  109.  
  110. A1:NewButton("show lava", "no worry!!", function()
  111.     for i,v in pairs(game.CoreGui:GetChildren()) do
  112.         if v.Name == "lava esp things" then
  113.             v:Destroy()
  114.         end
  115.     end
  116.     local folder = Instance.new("Folder")
  117.     folder.Parent = game.CoreGui
  118.     folder.Name = "lava esp things"
  119.     for i,v in pairs(game.Workspace:GetDescendants()) do
  120.         if v.Name == "Lava" then
  121.             local box = Instance.new("BoxHandleAdornment")
  122.             box.Parent = folder
  123.             box.Color3 = Color3.fromRGB(213, 115, 61)
  124.             box.Size = v.Size
  125.             box.ZIndex = 10
  126.             box.Adornee = v
  127.             box.Name = v.Name
  128.             box.AlwaysOnTop = true
  129.             box.Visible = true
  130.             box.Transparency = 0.5
  131.         end
  132.     end
  133. end)
  134.  
  135. A1:NewButton("stop showing lava", "no worry!!", function()
  136.     for i,v in pairs(game.CoreGui:GetChildren()) do
  137.         if v.Name == "lava esp things" then
  138.             v:Destroy()
  139.         end
  140.     end
  141. end)
  142.  
  143. A1:NewButton("no fall damage", "no worry 2!!", function()
  144.     game:GetService("ReplicatedStorage").GameRemotes.RequestDamage:Destroy()
  145. end)
  146.  
  147. A1:NewToggle("killaura", "killaura", function(bool)
  148.     getgenv().killaura = bool
  149.     if bool then
  150.         killaura()
  151.     else
  152.         print("killaura off")
  153.     end
  154. end)
  155.  
  156. A1:NewKeybind("gui", "gui", Enum.KeyCode.RightControl, function()
  157.     Library:ToggleUI()
  158. end)
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171. function killaura()
  172.     spawn(function()
  173.         while getgenv().killaura do
  174.             for i,v in pairs(game.Players:GetPlayers()) do
  175.                 if v ~= game.Players.LocalPlayer and v.Character and game.Players.LocalPlayer:DistanceFromCharacter(v.Character.HumanoidRootPart.Position) < 16 then
  176.                     game.ReplicatedStorage.GameRemotes.Attack:InvokeServer(v.Character)
  177.                 end
  178.             end
  179.             for i,v in pairs(game:GetService("Workspace").Animals:GetChildren()) do
  180.                 if v:FindFirstChild("HumanoidRootPart") and game.Players.LocalPlayer:DistanceFromCharacter(v.HumanoidRootPart.Position) < 16 then
  181.                     game.ReplicatedStorage.GameRemotes.AttackMob:InvokeServer(v)
  182.                 end
  183.             end
  184.             wait()
  185.         end
  186.     end)
  187. end
  188.  
  189.  
  190. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerScripts.MainLocalScript.Blocks:GetChildren()) do
  191.     if v.ClassName == "Part" then
  192.         table.insert(list,v.Name)
  193.     end
  194. end
  195.  
  196.  
  197. drpdwn:Refresh(list)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement