CaliberMag

Untitled

Jan 15th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  2. local example = library:CreateWindow({
  3. text = "A Modded Day Utilities"
  4. })
  5.  
  6. local credits = library:CreateWindow({text='Credits'})
  7. credits:AddLabel("Credits\nInori: Dragging\nwally: UI\nVlyn: Scripts\n")
  8.  
  9. example:AddBox("Stand Autofarm", function(object, focus)
  10. if focus then
  11. repeat
  12. game.ReplicatedStorage.Purchase:FireServer("Rokakaka Fruit", 0)
  13. game.ReplicatedStorage.Roka:FireServer()
  14. game.ReplicatedStorage.Purchase:FireServer("Arrow", 0)
  15. game.ReplicatedStorage.Arrow:FireServer()
  16. wait(4)
  17. until game.Players.LocalPlayer.Backpack:FindFirstChild(tostring(object.Text))
  18. end
  19. print("Stand Autofarm Has Started!")
  20. end)
  21.  
  22. example:AddButton("> Grab Diaries", function()
  23. char = game:GetService('Players').LocalPlayer.Character
  24. game:GetService('Players').LocalPlayer.CharacterAdded:connect(function(body)
  25. char = body end)
  26. for i,v in pairs(workspace:GetDescendants()) do
  27. if v.Name == "DIO's Diary" or v.Name == "Samurai Diary" or v.Name == "Pot Diary" or v.Name == "Toxic Diary" then
  28. char.Humanoid:EquipTool(v)
  29. end
  30. end
  31. print("Diaries Have Been Grabbed!")
  32. end)
  33.  
  34. example:AddButton("> Grab Requiem Arrows", function()
  35. char = game:GetService('Players').LocalPlayer.Character
  36. game:GetService('Players').LocalPlayer.CharacterAdded:connect(function(body)
  37. char = body end)
  38. for i,v in pairs(workspace:GetDescendants()) do
  39. if v.Name == "Requiem Arrow" or v.Name == "Sapphire Requiem Arrow" or v.Name == "Volcanic Requiem Arrow" or v.Name == "Toxic Requiem Arrow" then
  40. char.Humanoid:EquipTool(v)
  41. end
  42. end
  43. print("Req Arrows Have Been Grabbed!")
  44. end)
  45.  
  46. example:AddButton("> Grab Frogs", function()
  47. char = game:GetService('Players').LocalPlayer.Character
  48. game:GetService('Players').LocalPlayer.CharacterAdded:connect(function(body)
  49. char = body end)
  50. for i,v in pairs(workspace:GetDescendants()) do
  51. if v.Name == "Frog" or v.Name == "Solar Frog" or v.Name == "Pink Frog" or v.Name == "EnderFrog" or v.Name == "Sands" then
  52. char.Humanoid:EquipTool(v)
  53. end
  54. end
  55. print("Frogs Have Been Grabbed!")
  56. end)
  57.  
  58. example:AddButton("> Banknote Autofarm", function()
  59. print("Banknote Autofarm Has Started!")
  60. while wait() do
  61. char = game:GetService('Players').LocalPlayer.Character
  62. game:GetService('Players').LocalPlayer.CharacterAdded:connect(function(body)
  63. char = body end)
  64. for i,v in pairs(workspace:GetDescendants()) do
  65. if v.Name == "Banknote" then
  66. char.Humanoid:EquipTool(v)
  67. end
  68. end
  69. end
  70. end)
  71.  
  72. example:AddButton("> Diary Autofarm", function()
  73. print("Diary Autofarm Has Started!")
  74. while wait() do
  75. char = game:GetService('Players').LocalPlayer.Character
  76. game:GetService('Players').LocalPlayer.CharacterAdded:connect(function(body)
  77. char = body end)
  78. for i,v in pairs(workspace:GetDescendants()) do
  79. if v.Name == "DIO's Diary" or v.Name == "Samurai Diary" or v.Name == "Pot Diary" or v.Name == "Toxic Diary" then
  80. char.Humanoid:EquipTool(v)
  81. end
  82. end
  83. end
  84. end)
  85.  
  86. example:AddButton("> DIO's Diary Farm", function()
  87. print("DIO's Diary Autofarm Has Started!")
  88. while wait() do
  89. char = game:GetService('Players').LocalPlayer.Character
  90. game:GetService('Players').LocalPlayer.CharacterAdded:connect(function(body)
  91. char = body end)
  92. for i,v in pairs(workspace:GetDescendants()) do
  93. if v.Name == "DIO's Diary" then
  94. char.Humanoid:EquipTool(v)
  95. end
  96. end
  97. end
  98. end)
  99.  
  100. local dropdown;
  101. dropdown = example:AddDropdown({'[Stand Names]', 'StarPlatinumOVA', 'StarPlatinum', 'StarPlatinumTW', 'TheWorldOVA', 'TheWorld', 'TheWorldAlternateUniverse', 'WhiteSnake', 'CrazyDiamond', 'GoldExperience', 'DoppioKingCrimson', 'GoldDiamond', 'VolcanicExperience', 'SapphireExperience', 'ToxicExperience'}, function(a)
  102. end)
Add Comment
Please, Sign In to add comment