Dead Rails [ENDLESS]
22.4k Views

Alpha Aimbot with bind

Dead Rails [ENDLESS]Uploaded by
1 year ago
Please login to perform these actions:

Description

https://scriptblox.com/script/Dead-Rails-Alpha-aimbot-npc-script-29375

View Raw
Edited By: Nagi Download


Comments
2
User profile picture
kamsinahkamsinah05 1 year ago
--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- made by yee_kunkun(my roblox user name haha) local fov = 136 local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local Cam = workspace.CurrentCamera local Player = game:GetService("Players").LocalPlayer local FOVring = Drawing.new("Circle") FOVring.Visible = false FOVring.Thickness = 2 FOVring.Color = Color3.fromRGB(128, 0, 128) FOVring.Filled = false FOVring.Radius = fov FOVring.Position = Cam.ViewportSize / 2 local isAiming = false local validNPCs = {} local raycastParams = RaycastParams.new() raycastParams.FilterType = Enum.RaycastFilterType.Blacklist local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game.CoreGui local ToggleButton = Instance.new("TextButton") ToggleButton.Size = UDim2.new(0, 120, 0, 40) ToggleButton.Position = UDim2.new(0, 10, 0, 10) ToggleButton.Text = "AIMBOT: OFF" ToggleButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30) ToggleButton.TextColor3 = Color3.fromRGB(255, 50, 50) ToggleButton.Font = Enum.Font.GothamBold ToggleButton.TextSize = 14 ToggleButton.Parent = ScreenGui local function isNPC(obj) return obj:IsA("Model") and obj:FindFirstChild("Humanoid") and obj.Humanoid.Health > 0 and obj:FindFirstChild("Head") and obj:FindFirstChild("HumanoidRootPart") and not game:GetService("Players"):GetPlayerFromCharacter(obj) end local function updateNPCs() local tempTable = {} for _, obj in ipairs(workspace:GetDescendants()) do if isNPC(obj) then tempTable[obj] = true end end for i = #validNPCs, 1, -1 do if not tempTable[validNPCs[i]] then table.remove(validNPCs, i)
User profile picture
gavranicnikola6 1 year ago
How do i Get It to work
Please Login to add a comment.