trigger bot ONLY PC
Just a baseplate Keyless
trigger bot ONLY PC
👤 alexriderr 👁 139 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
Views139
Likes0
PublishedMay 13, 2026
🎮 Play Game on Roblox
🕐 Recent Scripts
Find The Squishies Script OP (Keyless) – Auto Win & Auto Farm
Find The Squishies Script OP (Keyless) – Auto Win & Auto Farm
Find The Squishies • 👁 21
Keyless
Be an Anomaly or Guard script keyless
Be an Anomaly or Guard script keyless
Be an Anomaly or Guard • 👁 25
Keyless
Nasi Rendang Evomon v1 script keyless
Nasi Rendang Evomon v1 script keyless
Evomon • 👁 21
Keyless
Instant Last Zone and Collect all cash
Instant Last Zone and Collect all cash
Escape with a Lucky Block • 👁 24
Keyless
Auto Win +100M and Auto rebirth
Auto Win +100M and Auto rebirth
🐒 +1 Speed Monkey Escape • 👁 26
Keyless