Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.1
- -- Instances:
- local AutoRapBattles = Instance.new("ScreenGui")
- local Bar = Instance.new("Frame")
- local Rainbow = Instance.new("Frame")
- local Main = Instance.new("Frame")
- local PValue = Instance.new("TextLabel")
- local PValueBox = Instance.new("TextBox")
- local BValueBox = Instance.new("TextBox")
- local BValue = Instance.new("TextLabel")
- local Execute = Instance.new("TextButton")
- local BotTitle = Instance.new("TextLabel")
- local MiniBot = Instance.new("TextButton")
- local MiscBar = Instance.new("Frame")
- local MiscRainbow = Instance.new("Frame")
- local MiscMain = Instance.new("Frame")
- local Execute_2 = Instance.new("TextButton")
- local MiscTitle = Instance.new("TextLabel")
- local MiscBot = Instance.new("TextButton")
- --Properties:
- AutoRapBattles.Name = "AutoRapBattles"
- AutoRapBattles.Parent = game.CoreGui
- AutoRapBattles.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Bar.Name = "Bar"
- Bar.Parent = AutoRapBattles
- Bar.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
- Bar.BorderSizePixel = 0
- Bar.Draggable = true
- Bar.Active = true
- Bar.Position = UDim2.new(0.256919801, 0, 0.0593368225, 0)
- Bar.Size = UDim2.new(0, 155, 0, 21)
- Rainbow.Name = "Rainbow"
- Rainbow.Parent = Bar
- Rainbow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Rainbow.BorderSizePixel = 0
- Rainbow.Position = UDim2.new(0, 0, 1, 0)
- Rainbow.Size = UDim2.new(0, 155, 0, 2)
- Main.Name = "Main"
- Main.Parent = Bar
- Main.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- Main.BorderSizePixel = 0
- Main.Position = UDim2.new(0, 0, 1.09523809, 0)
- Main.Size = UDim2.new(0, 155, 0, 75)
- PValue.Name = "PValue"
- PValue.Parent = Main
- PValue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- PValue.BackgroundTransparency = 1.000
- PValue.Position = UDim2.new(0, 0, 0.0804597661, 0)
- PValue.Size = UDim2.new(0, 91, 0, 16)
- PValue.Font = Enum.Font.Code
- PValue.Text = "Player Value:"
- PValue.TextColor3 = Color3.fromRGB(255, 255, 255)
- PValue.TextSize = 14.000
- PValueBox.Name = "PValueBox"
- PValueBox.Parent = Main
- PValueBox.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- PValueBox.BorderColor3 = Color3.fromRGB(255, 255, 255)
- PValueBox.Position = UDim2.new(0.664516091, 0, 0.0919540152, 0)
- PValueBox.Size = UDim2.new(0, 45, 0, 15)
- PValueBox.ClearTextOnFocus = false
- PValueBox.Font = Enum.Font.SourceSans
- PValueBox.PlaceholderText = "1 or 2"
- PValueBox.Text = ""
- PValueBox.TextColor3 = Color3.fromRGB(255, 255, 255)
- PValueBox.TextSize = 14.000
- BValueBox.Name = "BValueBox"
- BValueBox.Parent = Main
- BValueBox.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- BValueBox.BorderColor3 = Color3.fromRGB(255, 255, 255)
- BValueBox.Position = UDim2.new(0.664516091, 0, 0.447099924, 0)
- BValueBox.Size = UDim2.new(0, 45, 0, 15)
- BValueBox.ClearTextOnFocus = false
- BValueBox.Font = Enum.Font.SourceSans
- BValueBox.Text = "Under 50"
- BValueBox.TextColor3 = Color3.fromRGB(255, 255, 255)
- BValueBox.TextSize = 14.000
- BValue.Name = "BValue"
- BValue.Parent = Main
- BValue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- BValue.BackgroundTransparency = 1.000
- BValue.Position = UDim2.new(0, 0, 0.435605764, 0)
- BValue.Size = UDim2.new(0, 91, 0, 16)
- BValue.Font = Enum.Font.Code
- BValue.Text = "Bot Value:"
- BValue.TextColor3 = Color3.fromRGB(255, 255, 255)
- BValue.TextSize = 14.000
- Execute.Parent = Main
- Execute.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- Execute.BorderColor3 = Color3.fromRGB(255, 255, 255)
- Execute.Position = UDim2.new(0.135483876, 0, 0.733333349, 0)
- Execute.Size = UDim2.new(0, 112, 0, 12)
- Execute.Font = Enum.Font.Code
- Execute.Text = "Execute"
- Execute.TextColor3 = Color3.fromRGB(255, 255, 255)
- Execute.TextScaled = true
- Execute.TextSize = 14.000
- Execute.TextWrapped = true
- Execute.MouseButton1Click:connect(function()
- --Auto Rap Battles 2 Vote Bot Script Made By George
- --Make sure to execute when the voting GUI comes up
- local SelectedPlayer = PValueBox.Text --Change to 1 to vote for player 1 and change to 2 to vote for player 2.
- local VoteNumber = BValueBox.Text --Change this to how many votes you want.
- if SelectedPlayer == 1 then
- for i = 0,VoteNumber do
- game.Workspace.Votes:FireServer(false,"p1")
- wait(-math.huge)
- end
- end
- if SelectedPlayer == 2 then
- for i = 0,VoteNumber do
- game.Workspace.Votes:FireServer(false,"p2")
- wait(-math.huge)
- end
- end
- end)
- BotTitle.Name = "BotTitle"
- BotTitle.Parent = Bar
- BotTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- BotTitle.BackgroundTransparency = 1.000
- BotTitle.Size = UDim2.new(0, 103, 0, 21)
- BotTitle.Font = Enum.Font.Code
- BotTitle.Text = "Bot"
- BotTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
- BotTitle.TextScaled = true
- BotTitle.TextSize = 14.000
- BotTitle.TextWrapped = true
- BotTitle.TextXAlignment = Enum.TextXAlignment.Left
- MiniBot.Name = "MiniBot"
- MiniBot.Parent = Bar
- MiniBot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- MiniBot.BackgroundTransparency = 1.000
- MiniBot.BorderSizePixel = 0
- MiniBot.Position = UDim2.new(0.870967746, 0, 0, 0)
- MiniBot.Size = UDim2.new(0, 20, 0, 21)
- MiniBot.Font = Enum.Font.SourceSans
- MiniBot.Text = "+"
- MiniBot.TextColor3 = Color3.fromRGB(255, 255, 255)
- MiniBot.TextScaled = true
- MiniBot.TextSize = 14.000
- MiniBot.TextWrapped = true
- MiniBot.MouseButton1Click:connect(function()
- Main.Visible = not Main.Visible
- end)
- MiscBar.Name = "MiscBar"
- MiscBar.Parent = AutoRapBattles
- MiscBar.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
- MiscBar.BorderSizePixel = 0
- MiscBar.Active = true
- MiscBar.Draggable = true
- MiscBar.Position = UDim2.new(0.3789922, 0, 0.0593368225, 0)
- MiscBar.Size = UDim2.new(0, 155, 0, 21)
- MiscRainbow.Name = "MiscRainbow"
- MiscRainbow.Parent = MiscBar
- MiscRainbow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- MiscRainbow.BorderSizePixel = 0
- MiscRainbow.Position = UDim2.new(0, 0, 1, 0)
- MiscRainbow.Size = UDim2.new(0, 155, 0, 2)
- MiscMain.Name = "MiscMain"
- MiscMain.Parent = MiscBar
- MiscMain.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- MiscMain.BorderSizePixel = 0
- MiscMain.Position = UDim2.new(0, 0, 1.09523809, 0)
- MiscMain.Size = UDim2.new(0, 155, 0, 33)
- Execute_2.Parent = MiscMain
- Execute_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Execute_2.BackgroundTransparency = 1.000
- Execute_2.Position = UDim2.new(0, 0, 0.181818187, 0)
- Execute_2.Size = UDim2.new(0, 155, 0, 21)
- Execute_2.Font = Enum.Font.Code
- Execute_2.Text = "Kill Roblox"
- Execute_2.TextColor3 = Color3.fromRGB(255, 255, 255)
- Execute_2.TextScaled = true
- Execute_2.TextSize = 14.000
- Execute_2.TextWrapped = true
- Execute_2.MouseButton1Click:connect(function()
- while true do repeat until nil end
- end)
- MiscTitle.Name = "MiscTitle"
- MiscTitle.Parent = MiscBar
- MiscTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- MiscTitle.BackgroundTransparency = 1.000
- MiscTitle.Size = UDim2.new(0, 103, 0, 21)
- MiscTitle.Font = Enum.Font.Code
- MiscTitle.Text = "Misc"
- MiscTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
- MiscTitle.TextScaled = true
- MiscTitle.TextSize = 14.000
- MiscTitle.TextWrapped = true
- MiscTitle.TextXAlignment = Enum.TextXAlignment.Left
- MiscBot.Name = "MiscBot"
- MiscBot.Parent = MiscBar
- MiscBot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- MiscBot.BackgroundTransparency = 1.000
- MiscBot.BorderSizePixel = 0
- MiscBot.Position = UDim2.new(0.870967746, 0, 0, 0)
- MiscBot.Size = UDim2.new(0, 20, 0, 21)
- MiscBot.Font = Enum.Font.SourceSans
- MiscBot.Text = "+"
- MiscBot.TextColor3 = Color3.fromRGB(255, 255, 255)
- MiscBot.TextScaled = true
- MiscBot.TextSize = 14.000
- MiscBot.TextWrapped = true
- MiscBot.MouseButton1Click:connect(function()
- MiscMain.Visible = not MiscMain.Visible
- end)
- -- Scripts:
- local function IEDQL_fake_script() -- Rainbow.RainbowS
- local script = Instance.new('LocalScript', Rainbow)
- repeat
- for hue = 0, 1, .01 do
- script.Parent.BackgroundColor3 = Color3.fromHSV(hue, 1, 1)
- wait(.1)
- end
- for hue = 1, 0 -.01 do
- script.Parent.BackgroundColor3 = Color3.fromHSV(hue, 1, 1)
- wait(.1)
- end
- until nil
- end
- coroutine.wrap(IEDQL_fake_script)()
- local function MVRF_fake_script() -- MiscRainbow.MiscRainbowS
- local script = Instance.new('LocalScript', MiscRainbow)
- repeat
- for hue = 0, 1, .01 do
- script.Parent.BackgroundColor3 = Color3.fromHSV(hue, 1, 1)
- wait(.1)
- end
- for hue = 1, 0 -.01 do
- script.Parent.BackgroundColor3 = Color3.fromHSV(hue, 1, 1)
- wait(.1)
- end
- until nil
- end
- coroutine.wrap(MVRF_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement