Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---see also : https://pastebin.com/raw/YsMyuUCE
- me = game.Players.LocalPlayer
- mouse = me:GetMouse()
- local Core = game.CoreGui
- local Aim = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local Button = Instance.new("TextButton")
- local Checker = Instance.new("Frame")
- Aim.Name = "Aim Bot 1.0"
- Aim.Parent = Core
- local Bot = Core[Aim.Name]
- Main.Name = "Main"
- Main.Parent = Aim
- Main.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
- Main.BorderColor3 = Color3.new(0.3, 0.5, 0.7)
- Main.Position = UDim2.new(0, 500, 0, 500)
- Main.Size = UDim2.new(0, 150, 0, 70)
- Main.Visible = true
- Main.Draggable = true
- Main.Active = true
- Button.Name = "Click"
- Button.Parent = Main
- Button.BackgroundColor3 = Color3.new(0, 0, 0)
- Button.Position = UDim2.new(0, 25, 0, 15)
- Button.Size = UDim2.new(0, 50, 0, 25)
- Button.Font = Enum.Font.Cartoon
- Button.FontSize = Enum.FontSize.Size14
- Button.Text = "On"
- Button.TextSize = 18
- Checker.Name = "Check"
- Checker.Parent = Main
- Checker.BackgroundColor3 = Color3.new(0, 0, 0)
- Checker.BorderColor3 = Color3.new(1, 1, 1)
- Checker.Position = UDim2.new(0, 80, 0, 15)
- Checker.Size = UDim2.new(0, 30, 0, 30)
- function shoot()
- for i, v in pairs(game.Players:GetPlayers()) do
- if mouse.Target == nil then
- else
- if mouse.Target.Parent.Name == v.Name then
- for a, b in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if b.Name == "Revolver" then
- game.ReplicatedStorage.Events.GunFired:FireServer({Start=b.ShotOrigin, HitPart=v.Character.Head, HitPosition=v.Character.Head.Position})
- end
- end
- end
- end
- end
- end
- function on()
- check = "on"
- while check == "on" do
- wait()
- shoot()
- a = math.random(1, 100)
- b= math.random(1, 100)
- c= math.random(1, 100)
- a = a/100
- b = b/100
- c = c/100
- Bot.Main.Check.BackgroundColor3 = Color3.new(a, b, c)
- end
- end
- function off()
- check = "off"
- end
- Bot.Main.Click.MouseButton1Down:connect(function()
- if Bot.Main.Click.Text == "On" then
- Bot.Main.Click.Text = "Off"
- on()
- else
- Bot.Main.Click.Text = "On"
- off()
- end
- end)
Add Comment
Please, Sign In to add comment