Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local GUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/aaaa"))()
- local UI = GUI:CreateWindow("Hotel Elephant Script","Universal Hub")
- local Home = UI:addPage("Main",2,true,6)
- local Player = game.Players.LocalPlayer
- local Amount = 100
- Home:addLabel("Money Giver", "Give money to all players or give money to yourself")
- Home:addTextBox("Enter Amount", "100", function(value)
- if tonumber(value) then
- Amount = value
- end
- end)
- Home:addButton("Give All Money", function()
- for i, TargetPlayer in pairs(game.Players:GetPlayers()) do
- local Table = {
- [1] = false,
- [2] = Amount,
- [3] = "Cash",
- [4] = TargetPlayer
- }
- game:GetService("ReplicatedStorage").MoneyRequest:FireServer(unpack(Table))
- end
- end)
- Home:addButton("Give Yourself Money", function()
- local Table = {
- [1] = false,
- [2] = Amount,
- [3] = "Cash",
- [4] = Player
- }
- game:GetService("ReplicatedStorage").MoneyRequest:FireServer(unpack(Table))
- end)
- Home:addButton("Destroy Server", function()
- for _, Part in pairs(workspace:GetDescendants()) do
- game.ReplicatedStorage.DoorOpener:FireServer(Part)
- end
- end)
- local Credits = UI:addPage("Credits",1,false,6)
- Credits:addLabel("Credits", "Hud created by HappyH0lidays2021")
Advertisement
Advertisement