At the end of the month start GIVEAWAY of the key Synapse X. create themes, share scripts, the most active will get the opportunity to get a key
Download new Auto Rap Battles Auto-Farm and Auto Win Script for Roblox
local side = "p1" -- player 1 is the person on the left p2 is right
local amountofvotes = 4000
local player = game.Players.LocalPlayer
local vu = game:GetService("VirtualUser")
game:GetService("Players").LocalPlayer.Idled:connect(function()
vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
wait(1)
vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
end)
spawn(function()
while true do
wait()
if game.Workspace.RapBattles.Rappers.player1.Value == player.Name then
side = "p1"
else
side = "p2"
end
for i = 1,amountofvotes,1 do
wait()
game.Workspace.Votes:FireServer(false,side)
end
end
end)