Advertisement
nguyenminhnghia

beedupe

Jan 17th, 2019
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. local Frame = Instance.new("Frame")
  2. local tool = Instance.new("TextBox")
  3. local dupe = Instance.new("TextButton")
  4. local spam = Instance.new("TextButton")
  5. local getiem = Instance.new("TextButton")
  6. local off = Instance.new("TextButton")
  7. local TextLabel = Instance.new("TextLabel")
  8. --Properties:
  9. Frame.Parent = game.StarterGui.ScreenGui
  10. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  11. Frame.Position = UDim2.new(0.40440166, 0, 0.183333337, 0)
  12. Frame.Size = UDim2.new(0, 302, 0, 126)
  13. Frame.Active = true
  14. Frame.Draggable = true
  15.  
  16. tool.Name = "tool"
  17. tool.Parent = Frame
  18. tool.BackgroundColor3 = Color3.new(1, 1, 1)
  19. tool.Size = UDim2.new(0, 233, 0, 67)
  20. tool.Font = Enum.Font.SourceSans
  21. tool.Text = "Tool"
  22. tool.TextColor3 = Color3.new(0.00392157, 0.00784314, 0.00392157)
  23. tool.TextSize = 14
  24.  
  25. dupe.Name = "dupe"
  26. dupe.Parent = Frame
  27. dupe.BackgroundColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  28. dupe.Position = UDim2.new(0, 0, 0.541180193, 0)
  29. dupe.Size = UDim2.new(0, 143, 0, 57)
  30. dupe.Font = Enum.Font.SourceSans
  31. dupe.Text = "Dupe"
  32. dupe.TextColor3 = Color3.new(0.0235294, 0.0196078, 0.0196078)
  33. dupe.TextSize = 14
  34. dupe.MouseButton1Click:connect(function()
  35. _G.dupe = true
  36. while _G.dupe do
  37. wait()
  38. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  39. if v.Name == tool.Text then
  40. v.Parent = game.Players.LocalPlayer
  41. end
  42. end
  43. end
  44. end)
  45.  
  46. spam.Name = "spam"
  47. spam.Parent = Frame
  48. spam.BackgroundColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  49. spam.Position = UDim2.new(0.771523178, 0, 0.238095239, 0)
  50. spam.Size = UDim2.new(0, 69, 0, 37)
  51. spam.Font = Enum.Font.SourceSans
  52. spam.Text = "Spam"
  53. spam.TextColor3 = Color3.new(0, 0, 0)
  54. spam.TextSize = 14
  55. spam.MouseButton1Click:connect(function()
  56. _G.bee = true
  57. while _G.bee do
  58. wait()
  59. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetDescendants()) do
  60. if string.find(v.Name,tool.Text) then
  61. v.Parent = game.Players.LocalPlayer.Character
  62. workspace[game.Players.LocalPlayer.Name][tool.Text].ClickEvent:FireServer()
  63. game.Players.LocalPlayer.Character[tool.Text].Parent = game.Players.LocalPlayer.Backpack
  64. end
  65. end
  66. end
  67. end)
  68.  
  69. getiem.Name = "getiem"
  70. getiem.Parent = Frame
  71. getiem.BackgroundColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  72. getiem.Position = UDim2.new(0.473509938, 0, 0.541180193, 0)
  73. getiem.Size = UDim2.new(0, 159, 0, 29)
  74. getiem.Font = Enum.Font.SourceSans
  75. getiem.Text = "Getitem"
  76. getiem.TextColor3 = Color3.new(0, 0, 0)
  77. getiem.TextSize = 14
  78. getiem.MouseButton1Click:connect(function()
  79. _G.getitem = true
  80. while _G.getitem do
  81. wait()
  82. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  83. if v.Name == tool.Text then
  84. v.Parent = game.Players.LocalPlayer.Backpack
  85. end
  86. end
  87. end
  88. end)
  89.  
  90. off.Name = "off"
  91. off.Parent = Frame
  92. off.BackgroundColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  93. off.Position = UDim2.new(0.473509938, 0, 0.777221143, 0)
  94. off.Size = UDim2.new(0, 159, 0, 28)
  95. off.Font = Enum.Font.SourceSans
  96. off.Text = "Off"
  97. off.TextColor3 = Color3.new(0, 0, 0)
  98. off.TextSize = 14
  99. off.MouseButton1Click:connect(function()
  100. _G.bee = false
  101. _G.dupe = false
  102. _G.getitem = false
  103. end)
  104.  
  105. TextLabel.Parent = Frame
  106. TextLabel.BackgroundColor3 = Color3.new(0.00784314, 0.00784314, 0.00784314)
  107. TextLabel.Position = UDim2.new(0, 0, 0.989828944, 0)
  108. TextLabel.Size = UDim2.new(0, 302, 0, 24)
  109. TextLabel.Font = Enum.Font.GothamSemibold
  110. TextLabel.Text = "Made by Razel"
  111. TextLabel.TextColor3 = Color3.new(0.101961, 0.972549, 0.0392157)
  112. TextLabel.TextSize = 14
  113. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement