Advertisement
Kitty-Admin

For EEE!!

May 3rd, 2021
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.33 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2.  
  3. local Window = Library.CreateLib("Auto Rap Battles", "Ocean")
  4.  
  5. --Tabs
  6. local MTab = Window:NewTab("Main")
  7. local CTab = Window:NewTab("Chat")
  8. local TTab = Window:NewTab("Teleports")
  9. local VTab = Window:NewTab("Voting")
  10. --Sections
  11. local MSec = MTab:NewSection("Main")
  12. local CSec = CTab:NewSection("Chat")
  13. local TSec = TTab:NewSection("Teleports")
  14. local VSec = VTab:NewSection("Voting")
  15.  
  16. --VOTE
  17. VSec:NewButton("Player1", "Votes For The Player.", function()
  18.     for i = 0,1 do
  19.         game.Workspace.Votes:FireServer(false,"p1")
  20.         game:GetService("RunService").Heartbeat:Wait()
  21.     end
  22. end)
  23.  
  24. VSec:NewButton("Player2", "Votes For The Player.", function()
  25.     for i = 0,1 do
  26.         game.Workspace.Votes:FireServer(false,"p2")
  27.         game:GetService("RunService").Heartbeat:Wait()
  28.     end
  29. end)
  30. --VOTE
  31.  
  32. --TP
  33. TSec:NewButton("Scene", "Teleports You To The Stage.", function()
  34.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-77, 65, -214)
  35. end)
  36.  
  37. TSec:NewButton("DJ Spot", "Teleports You To The Stage.", function()
  38.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-90, 65, -214)
  39. end)
  40. --TP
  41.  
  42. --CHAT
  43. CSec:NewTextBox("Chat", "Basically Chats. I Don't Know Why I Put This Here?", function(v)
  44.     local args = {
  45.     [1] = v,
  46.     [2] = "All"
  47.     }
  48.        
  49.     game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  50. end)
  51. --CHAT
  52.  
  53. --MAIN
  54. MSec:NewButton("Buidling Tools", "Gives You Non-Fe Building Tools.", function()
  55.     a = Instance.new("HopperBin")
  56.     a.BinType = 1
  57.     a.Parent = game.Players.LocalPlayer.Backpack
  58.     wait(1)
  59.     a = Instance.new("HopperBin")
  60.     a.BinType = 4
  61.     a.Parent = game.Players.LocalPlayer.Backpack
  62.     wait(1)
  63.     a = Instance.new("HopperBin")
  64.     a.BinType = 3
  65.     a.Parent = game.Players.LocalPlayer.Backpack
  66. end)
  67. --MAIN
  68.  
  69. local args = {
  70. [1] = "Hi",
  71. [2] = "All"
  72. }
  73.  
  74. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  75.  
  76. while true do
  77.     button:UpdateButton(game.Workspace.RapBattles.Rappers.player2.Value)
  78.     button:UpdateButton(game.Workspace.RapBattles.Rappers.player1.Value)
  79.     wait(0.1)
  80. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement