trigger bot ONLY PC
Just a baseplate Keyless
trigger bot ONLY PC
👤 alexriderr 👁 8 views ❤️ 0 likes ⏱ May 13, 2026
This is a universal triggerbot script that automatically fires whenever your mouse cursor moves over an enemy after the feature is enabled.
✨ Features
trigger bot
📋 Script Code
-- TriggerBot Test with Rayfield UI
-- Paste into your executor

local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()

local Window = Rayfield:CreateWindow({
   Name = "TriggerBot Test",
   LoadingTitle = "Loading TriggerBot...",
   LoadingSubtitle = "by Grok",
   ConfigurationSaving = {
      Enabled = true,
      FolderName = "TriggerBotTest",
      FileName = "TriggerBotConfig"
   }
})

local Tab = Window:CreateTab("Main", 4483362458) -- Icon ID

local TriggerSection = Tab:CreateSection("TriggerBot")

local triggerEnabled = false
local teamCheck = true
local delay = 0.01

-- Main TriggerBot Loop
local function checkTrigger()
   while triggerEnabled do
      task.wait(delay)
      
      local mouse = game.Players.LocalPlayer:GetMouse()
      local target = mouse.Target
      
      if target and target.Parent then
         local character = target.Parent
         local player = game.Players:GetPlayerFromCharacter(character)
         
         if player and player ~= game.Players.LocalPlayer then
            -- Team check
            if not teamCheck or player.Team ~= game.Players.LocalPlayer.Team then
               -- Fire the gun (simulate mouse click)
               mouse1click()
               task.wait(0.05) -- Small debounce so it doesn't spam too hard
            end
         end
      end
   end
end

Tab:CreateToggle({
   Name = "Enable TriggerBot",
   CurrentValue = false,
   Flag = "TriggerToggle",
   Callback = function(Value)
      triggerEnabled = Value
      if Value then
         task.spawn(checkTrigger)
         Rayfield:Notify({
            Title = "TriggerBot",
            Content = "Enabled - Aim at enemies and hold left click if needed",
            Duration = 3,
            Image = 4483362458
         })
      end
   end,
})

Tab:CreateToggle({
   Name = "Team Check",
   CurrentValue = true,
   Flag = "TeamCheck",
   Callback = function(Value)
      teamCheck = Value
   end,
})

Tab:CreateSlider({
   Name = "Trigger Delay",
   Range = {0, 0.2},
   Increment = 0.01,
   CurrentValue = 0.01,
   Flag = "DelaySlider",
   Callback = function(Value)
      delay = Value
   end,
})

Tab:CreateButton({
   Name = "Test Notification",
   Callback = function()
      Rayfield:Notify({
         Title = "Test",
         Content = "TriggerBot script is working correctly!",
         Duration = 4,
      })
   end,
})

Rayfield:LoadConfiguration()
🎮 Similar Scripts
💬 Comments (0)
Login to post a comment
No comments yet. Be the first!
Script Info
Game Just a baseplate
TypeKeyless
Authoralexriderr
Views8
Likes0
PublishedMay 13, 2026
🎮 Play Game on Roblox
🕐 Recent Scripts
Zombie Uprising, Aimbot, ESP, No Fog, Collect Powerups
Zombie Uprising, Aimbot, ESP, No Fog, Collect Powerups
Zombie Uprising • 👁 1
Keyless
AMBER Project Delta Script (No Keys) – Combat & Movement
AMBER Project Delta Script (No Keys) – Combat & Movement
Project Delta • 👁 2
Keyless
Silent Aim Rivals Script OP Keyless
Silent Aim Rivals Script OP Keyless
RIVALS • 👁 3
Keyless
Auto Farm Blox Fruits Scripts – Xeno Supported
Auto Farm Blox Fruits Scripts – Xeno Supported
Blox Fruits • 👁 4
Keyless
Kaiju Alpha Nexit Hub Auto Farm Buidlings Script
Kaiju Alpha Nexit Hub Auto Farm Buidlings Script
Kaiju Alpha • 👁 8
Keyless