Advertisement
HEHEJ

Untitled

Mar 29th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. local function SendNotification(Title,Text,Duration) -- Sends Notification in the bottom right of the screen
  2. game.StarterGui:SetCore("SendNotification", {
  3. Title = Title;
  4. Text = Text;
  5. Icon = nil;
  6. Duration = Duration
  7. })
  8. end
  9.  
  10. game.StarterGui:SetCore("SendNotification", {
  11. Title = "Credits"; -- the title (ofc)
  12. Text = "Johiro - Da best doe"; -- what the text says (ofc)
  13. Icon = "rbxassetid://57254792"; -- the image if u want.
  14. Duration = 5; -- how long the notification should in secounds
  15. })
  16. local mouse = game.Players.LocalPlayer:GetMouse()
  17. _G.AutoDrop = false
  18.  
  19. local library = loadstring(game:HttpGet("https://pastebin.com/raw/CkyR8ePz", true))()
  20. local Axe = library:CreateWindow('Axinator 2000')
  21.  
  22.  
  23. Axe:Toggle('Drop Dupe', {flag = "toggle1"}, function(toggled)
  24. _G.AutoDrop = toggled
  25. end)
  26.  
  27.  
  28. Axe:Button("Dupe Axes", function()
  29. local lp = game.Players.LocalPlayer
  30. local bp = lp.Backpack
  31. local pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  32. for i,v in pairs(lp.Character:GetChildren()) do
  33. if v.ClassName == "Part" then
  34. v:Destroy()
  35. end
  36. end
  37. wait(.1)
  38. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  39. if v.Name == "Tool" and v.Name ~= "BlueprintTool" then
  40. v.Parent = game.Players.LocalPlayer
  41. end
  42. end
  43. lp.CharacterAdded:Connect(function()
  44. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  45. if v.Name == "Tool" and v.Name ~= "BlueprintTool" then
  46. v.Parent = game.Players.LocalPlayer.Backpack
  47. end
  48. end
  49. wait(2)
  50. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  51. wait(.1)
  52. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  53. wait(.1)
  54. pos = nil
  55. if _G.AutoDrop == true then
  56. for a,b in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  57. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  58. game.ReplicatedStorage.Interaction.ClientInteracted:FireServer(b, "Drop tool", game.Players.LocalPlayer.Character.Head.CFrame + Vector3.new(0,5,0))
  59. end
  60. end
  61. end
  62. end)
  63. end)
  64.  
  65. Axe:Button("Drop Axes", function()
  66. for a,b in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  67. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  68. game.ReplicatedStorage.Interaction.ClientInteracted:FireServer(b, "Drop tool", game.Players.LocalPlayer.Character.Head.CFrame + Vector3.new(0,5,0))
  69. end
  70. end
  71. end)
  72.  
  73. Axe:Button("Count Axes", function()
  74. Amount = 0
  75. for a,b in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  76. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  77. Amount = Amount + 1
  78. end
  79. end
  80. SendNotification("Axe Amount", "You have "..Amount.." Axes in your Backpack",2)
  81. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement