Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local DupeOn = Instance.new("TextButton") local DupeOff = Instance.new("TextButton") local AutodigOn = Instance.new("TextButton") local Autodigoff = Instance.new("TextButton") local GetTool = Instance.new("TextButton") local TextBox = Instance.new("TextBox") local BackOn = Instance.new("TextButton") local BackOff = Instance.new("TextButton") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.new(1, 1, 1) Frame.BackgroundTransparency = 0.20000000298023 Frame.Position = UDim2.new(0.72862339, 0, 0.381102353, 0) Frame.Size = UDim2.new(0, 242, 0, 299)Frame.Active = true Frame.Draggable = true TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.new(1, 1, 1) TextLabel.Position = UDim2.new(-0.000768005848, 0, -2.97129154e-05, 0) TextLabel.Size = UDim2.new(0, 242, 0, 50) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "Made Gui : AZTK" TextLabel.TextColor3 = Color3.new(0, 0, 0) TextLabel.TextScaled = true TextLabel.TextSize = 14 TextLabel.TextWrapped = true DupeOn.Name = "DupeOn" DupeOn.Parent = Frame DupeOn.BackgroundColor3 = Color3.new(1, 1, 1) DupeOn.Position = UDim2.new(0.0302391369, 0, 0.207760751, 0) DupeOn.Size = UDim2.new(0, 100, 0, 50) DupeOn.Visible = false DupeOn.Font = Enum.Font.SourceSans DupeOn.Text = "Nhân Đôi Bật" DupeOn.TextColor3 = Color3.new(0, 0, 0) DupeOn.TextScaled = true DupeOn.TextSize = 14 DupeOn.TextWrapped = true DupeOn.MouseButton1Click:connect(function() DupeOff.Visible = true DupeOn.Visible = false _G.dupe = false end) DupeOff.Name = "DupeOff" DupeOff.Parent = Frame DupeOff.BackgroundColor3 = Color3.new(1, 1, 1) DupeOff.Position = UDim2.new(0.0302391369, 0, 0.207760751, 0) DupeOff.Size = UDim2.new(0, 100, 0, 50) DupeOff.Font = Enum.Font.SourceSans DupeOff.Text = "Nhân Đôi Tắt" DupeOff.TextColor3 = Color3.new(0, 0, 0) DupeOff.TextScaled = true DupeOff.TextSize = 14 DupeOff.TextWrapped = true DupeOff.MouseButton1Click:connect(function() DupeOff.Visible = false DupeOn.Visible = true _G.dupe = true while _G.dupe do wait() for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do if v.Name == TextBox.Text then v.Parent = game.Players.LocalPlayer end end for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do if v.Name == TextBox.Text then v.Parent = game.Players.LocalPlayer end end end end) AutodigOn.Name = "AutoDigOn" AutodigOn.Parent = Frame AutodigOn.BackgroundColor3 = Color3.new(1, 1, 1) AutodigOn.Position = UDim2.new(0.559164762, 0, 0.207760751, 0) AutodigOn.Size = UDim2.new(0, 96, 0, 50) AutodigOn.Visible = false AutodigOn.Font = Enum.Font.SourceSans AutodigOn.Text = "Tự Động Đập Bật" AutodigOn.TextColor3 = Color3.new(0, 0, 0) AutodigOn.TextScaled = true AutodigOn.TextSize = 14 AutodigOn.TextWrapped = true AutodigOn.MouseButton1Click:connect(function() Autodigoff.Visible = true AutodigOn.Visible = false _G.Farm = false end) Autodigoff.Name = "Autodigoff" Autodigoff.Parent = Frame Autodigoff.BackgroundColor3 = Color3.new(1, 1, 1) Autodigoff.Position = UDim2.new(0.559164762, 0, 0.207760751, 0) Autodigoff.Size = UDim2.new(0, 96, 0, 50) Autodigoff.Font = Enum.Font.SourceSans Autodigoff.Text = "Tự Động Đập Tắt" Autodigoff.TextColor3 = Color3.new(0, 0, 0) Autodigoff.TextScaled = true Autodigoff.TextSize = 14 Autodigoff.TextWrapped = true Autodigoff.MouseButton1Click:connect(function() Autodigoff.Visible = false AutodigOn.Visible = true _G.Farm = true while _G.Farm do wait() for i,v in pairs(game.Players.LocalPlayer.Backpack:GetDescendants()) do if string.find(v.Name,TextBox.Text) then v.Parent = game.Players.LocalPlayer.Character workspace[game.Players.LocalPlayer.Name][TextBox.Text].ClickEvent:FireServer() game.Players.LocalPlayer.Character[TextBox.Text].Parent = game.Players.LocalPlayer.Backpack end end end end) GetTool.Name = "GetTool" GetTool.Parent = Frame GetTool.BackgroundColor3 = Color3.new(1, 1, 1) GetTool.Position = UDim2.new(0.563296974, 0, 0.467831135, 0) GetTool.Size = UDim2.new(0, 93, 0, 61) GetTool.Font = Enum.Font.SourceSans GetTool.Text = "Lấy Vũ Khí" GetTool.TextColor3 = Color3.new(0, 0, 0) GetTool.TextScaled = true GetTool.TextSize = 14 GetTool.TextWrapped = true GetTool.MouseButton1Click:connect(function() game:GetService("ReplicatedStorage").Events.ItemPackageEvent:InvokeServer("Equip", { ["Mute"]= false, ["Type"]= TextBox.Text, ["Category"]= "Collector" }) end) TextBox.Parent = Frame TextBox.BackgroundColor3 = Color3.new(1, 1, 1) TextBox.Position = UDim2.new(0.165289253, 0, 0.742078722, 0) TextBox.Size = UDim2.new(0, 162, 0, 61) TextBox.Font = Enum.Font.SourceSans TextBox.Text = "Tên Vũ Khí" TextBox.TextColor3 = Color3.new(0, 0, 0) TextBox.TextScaled = true TextBox.TextSize = 14 TextBox.TextWrapped = true BackOn.Name = "BackOn" BackOn.Parent = Frame BackOn.BackgroundColor3 = Color3.new(1, 1, 1) BackOn.Position = UDim2.new(0.0302391369, 0, 0.467831194, 0) BackOn.Size = UDim2.new(0, 100, 0, 61) BackOn.Visible = false BackOn.Font = Enum.Font.SourceSans BackOn.Text = "Lấy Vào Bật" BackOn.TextColor3 = Color3.new(0, 0, 0) BackOn.TextScaled = true BackOn.TextSize = 14 BackOn.TextWrapped = true BackOn.MouseButton1Down:connect(function() BackOn.Visible = false BackOff.Visible = true _G.backpack = false end) BackOff.Name = "BackOff" BackOff.Parent = Frame BackOff.BackgroundColor3 = Color3.new(1, 1, 1) BackOff.Position = UDim2.new(0.0302391369, 0, 0.467831194, 0) BackOff.Size = UDim2.new(0, 100, 0, 61) BackOff.Font = Enum.Font.SourceSans BackOff.Text = "Lấy Ra Tắt" BackOff.TextColor3 = Color3.new(0, 0, 0) BackOff.TextScaled = true BackOff.TextSize = 14 BackOff.TextWrapped = true BackOff.MouseButton1Click:connect(function() BackOff.Visible = false BackOn.Visible = true _G.backpack = true while _G.backpack do wait() for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do if v.Name == TextBox.Text then v.Parent = game.Players.LocalPlayer.Backpack end end end end)
Add Comment
Please, Sign In to add comment