Advertisement
_Thanh_Thy_Cute_

Murder Blox 2 GUI - AUTO FARM - CRASH SERVER & MORE!

Aug 18th, 2021
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GreenDeno/Venyx-UI-Library/main/source.lua"))()
  2. local lol = 0
  3. local venyx = library.new("Murder Blox 2", 5013109572)
  4. local themes = {
  5. Background = Color3.fromRGB(24, 24, 24),
  6. Glow = Color3.fromRGB(0, 0, 0),
  7. Accent = Color3.fromRGB(10, 10, 10),
  8. LightContrast = Color3.fromRGB(20, 20, 20),
  9. DarkContrast = Color3.fromRGB(14, 14, 14),
  10. TextColor = Color3.fromRGB(255, 255, 255)
  11. }
  12. local page = venyx:addPage("Farms", 5012544693)
  13. local section1 = page:addSection("Coin/XP Farm")
  14. local section2 = page:addSection("Item Farm")
  15. local section3 = page:addSection("Auto Case Opener")
  16. section1:addButton("Coin and XP farm", function()
  17. game:GetService("RunService").RenderStepped:Connect(function()
  18. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-89, 7961, 257)
  19. for i, v in pairs(game.workspace:GetChildren()) do
  20. if v.Name == "Coin" then
  21. v.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  22. end
  23. end
  24. end)
  25. end)
  26. section2:addButton("Fast Guitar Sword farm, VERY laggy. (free sword in shop)", function()
  27. game:GetService("RunService").RenderStepped:Connect(function()
  28. game:GetService("ReplicatedStorage").Interactions.Server.BuyShopItem:InvokeServer(game:GetService("ReplicatedStorage").ShopEntries.KnifeSkins:FindFirstChild("Guitar Sword"))
  29. end)
  30. end)
  31. section2:addButton("Normal Guitar Sword Farm", function()
  32. while wait(0.1) do
  33. game:GetService("ReplicatedStorage").Interactions.Server.BuyShopItem:InvokeServer(game:GetService("ReplicatedStorage").ShopEntries.KnifeSkins:FindFirstChild("Guitar Sword"))
  34. end
  35. end)
  36. section3:addTextbox("Case", "Put Case Here", function(value, CaseUpdate)
  37. if CaseUpdate then
  38. _G.Case = value
  39. venyx:Notify("Case updated to", _G.Case)
  40. end
  41. print("Selected", text)
  42. end)
  43. section3:addToggle("Auto Open Case", nil, function(On)
  44. while On == true do
  45. wait()
  46. game:GetService("ReplicatedStorage").Interactions.Server.BuyShopItem:InvokeServer(game:GetService("ReplicatedStorage").ShopEntries.KnifeSkins:FindFirstChild(_G.Case))
  47. end
  48. end)
  49. local page2 = venyx:addPage("Misc", 5012544693)
  50. local section3 = page2:addSection("Movement")
  51. local section4 = page2:addSection("Crash Server")
  52. section3:addSlider("Walkspeed", 16, 0, 100, function(walkspeed)
  53. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = walkspeed
  54. end)
  55. section3:addSlider("Jumppower", 50, 0, 200, function(jumppower)
  56. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jumppower
  57. end)
  58. section4:addButton("CRASH SERVER (kills ur playergui)", function()
  59. for i, v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  60. v:Destroy()
  61. end
  62. game:GetService("RunService").RenderStepped:Connect(function()
  63. for i = 1, 40 do
  64. game:GetService("ReplicatedStorage").Interactions.Server.SendChatMessage:FireServer("devs fix ur game LOL")
  65. end
  66. end)
  67. end)
  68. local page3 = venyx:addPage("Visuals", 5012544693)
  69. local section5 = page3:addSection("ESP - credits to ic3w0lf")
  70. section5:addButton("ESP", function()
  71. loadstring(game:HttpGet("https://raw.githubusercontent.com/ic3w0lf22/Unnamed-ESP/master/UnnamedESP.lua"))()
  72. end)
  73. section5:addButton("Show Player Roles in PlayerList", function(art)
  74. game:GetService("RunService").RenderStepped:Connect(function()
  75. local remote = game:GetService("ReplicatedStorage").Interactions.Server.GetRoleForPlayer
  76. lol = lol + 1
  77. if lol == 20 then
  78. lol = 0
  79. for i, v in pairs(game.Players:GetChildren()) do
  80. if remote:InvokeServer(v.Name) == "Sheriff"then
  81. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Playerlist.Container[v.Name].PlayerName.Text = v.Name.." - ".."Sheriff"
  82. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Playerlist.Container[v.Name].PlayerName.TextColor3 = Color3.new(0, 0, 255)
  83. else if remote:InvokeServer(v.Name) == "Murderer" then
  84. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Playerlist.Container[v.Name].PlayerName.Text = v.Name.." - ".."Murderer"
  85. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Playerlist.Container[v.Name].PlayerName.TextColor3 = Color3.new(255, 0, 0)
  86. else
  87. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Playerlist.Container[v.Name].PlayerName.Text = v.Name.." - ".."Innocent"
  88. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Playerlist.Container[v.Name].PlayerName.TextColor3 = Color3.new(0, 255, 0)
  89. end
  90. end
  91. end
  92. end
  93. end)
  94. end)
  95. local theme = venyx:addPage("Theme", 5012544693)
  96. local colors = theme:addSection("Colors")
  97. for theme, color in pairs(themes) do -- all in one theme changer, i know, im cool
  98. colors:addColorPicker(theme, color, function(color3)
  99. venyx:setTheme(theme, color3)
  100. end)
  101. end
  102. venyx:SelectPage(venyx.pages[1], true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement