Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made by Solu#0382
- local Item = nil
- local Player = game.Players.LocalPlayer
- local Price = -2000000000
- local mode = "None"
- local ScreenGui = Instance.new("ScreenGui")
- ScreenGui.Parent = Player.PlayerGui
- ScreenGui.Name = "ItemHack"
- local Frame = Instance.new("Frame")
- Frame.Parent = ScreenGui
- Frame.Size = UDim2.new(0, 400,0,150)
- Frame.Position = UDim2.new(0,200,0,185)
- Frame.BackgroundColor3 = Color3.new(.188,.188,.188)
- Frame.Name = "MainFrame"
- Frame.Draggable = true
- Frame.Active = true
- local Title = Instance.new("TextLabel")
- Title.Parent = Frame
- Title.Text = "Limited Universe GUI"
- Title.Font = Enum.Font.SourceSansBold
- Title.FontSize = Enum.FontSize.Size24
- Title.TextColor3 = Color3.new(255,255,255)
- Title.TextStrokeTransparency = .3
- Title.Position = UDim2.new(0,100,0,5)
- Title.Size = UDim2.new(0,200,0,20)
- Title.BackgroundTransparency = 1
- local Title2 = Instance.new("TextLabel")
- Title2.Parent = Frame
- Title2.Text = "2B"
- Title2.Font = Enum.Font.SourceSansBold
- Title2.FontSize = Enum.FontSize.Size24
- Title2.TextColor3 = Color3.new(255,255,255)
- Title2.TextStrokeTransparency = .3
- Title2.Position = UDim2.new(0,20,0,113)
- Title2.Size = UDim2.new(0,25,0,20)
- Title2.BackgroundTransparency = 1
- local Title3 = Instance.new("TextLabel")
- Title3.Parent = Frame
- Title3.Text = "-2B"
- Title3.Font = Enum.Font.SourceSansBold
- Title3.FontSize = Enum.FontSize.Size24
- Title3.TextColor3 = Color3.new(255,255,255)
- Title3.TextStrokeTransparency = .3
- Title3.Position = UDim2.new(0,135,0,113)
- Title3.Size = UDim2.new(0,25,0,20)
- Title3.BackgroundTransparency = 1
- local Button2 = Instance.new("TextButton")
- Button2.Parent = Frame
- Button2.Size = UDim2.new(0,25,0,25)
- Button2.Position = UDim2.new(0,50,0,113)
- Button2.Text = ""
- Button2.BackgroundColor3 = Color3.new(.4,.13,1)
- Button2.TextColor3 = Color3.new(255,255,255)
- Button2.TextStrokeTransparency = .6
- Button2.MouseButton1Down:connect(function()
- mode = "2B"
- end)
- local Button3 = Instance.new("TextButton")
- Button3.Parent = Frame
- Button3.Size = UDim2.new(0,25,0,25)
- Button3.Position = UDim2.new(0,175,0,110)
- Button3.Text = ""
- Button3.BackgroundColor3 = Color3.new(.4,.13,1)
- Button3.TextColor3 = Color3.new(255,255,255)
- Button3.TextStrokeTransparency = .6
- Button3.MouseButton1Down:connect(function()
- mode = "-2B"
- end)
- local TextBox = Instance.new("TextBox")
- TextBox.Parent = Frame
- TextBox.Position = UDim2.new(0,25,0,50)
- TextBox.Size = UDim2.new(0,125,0,40)
- TextBox.BackgroundColor3 = Color3.new(255,.2,.2)
- TextBox.Text = "Enter Item Name Here"
- TextBox.TextColor3 = Color3.new(255,255,255)
- TextBox.TextStrokeTransparency = .6
- TextBox.TextScaled = true
- TextBox.TextWrapped = true
- TextBox.BackgroundTransparency = .5
- local Button = Instance.new("TextButton")
- Button.Parent = Frame
- Button.Size = UDim2.new(0,75,0,40)
- Button.Position = UDim2.new(0,155,0,50)
- Button.Text = "Change"
- Button.BackgroundColor3 = Color3.new(.4,.13,1)
- Button.TextColor3 = Color3.new(255,255,255)
- Button.TextStrokeTransparency = .6
- Button.MouseButton1Down:connect(function()
- Item = TextBox.Text
- for i_,v in pairs (game.ReplicatedStorage.Limitteds[Item].Privates:GetChildren()) do
- if mode == "2B" then
- v.Price.Value = 2000000000
- elseif mode == "-2B" then
- v.Price.Value = -2000000000
- end
- end
- end)
- local Auto = Instance.new("TextButton")
- Auto.Size = UDim2.new(0,125,0,40)
- Auto.Position = UDim2.new(0,250,0,100)
- Auto.BackgroundColor3 = Color3.new(1,.4,.2)
- Auto.Parent = Frame
- Auto.Text = "Auto Buy"
- Auto.Font = Enum.Font.SourceSansBold
- Auto.FontSize = Enum.FontSize.Size18
- Auto.TextColor3 = Color3.new(255,255,255)
- Auto.TextStrokeTransparency = .6
- Auto.MouseButton1Down:connect(function()
- local send = game.ReplicatedStorage:WaitForChild('Items')
- game.ReplicatedStorage.Limitteds.ChildAdded:connect(function(c)
- if c:IsA('Folder') then
- local id = c:WaitForChild('AssetID')
- local price = c:WaitForChild('Price')
- if id and price then
- local result
- local succ, err = pcall(function()
- result = send:InvokeServer(price.Value, id.Value, c.Name)
- end)
- if succ then
- if result then
- warn('Successfully bought: ' .. c.Name)
- else
- warn('Failed to buy: ' .. c.Name)
- end
- else
- warn('Ran into an error when trying to buy ' .. c.Name .. ': ' .. err)
- end
- end
- end
- end)
- warn('Auto-buy loaded!')
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement