ONE TAP SCRIPT [AIMBOT + ESP]
Free One Tap Roblox script · no key system · mobile — copy & run on your executor.
Description
- ONE TAP SCRIPT GUYS THIS IS BUILD BY SRATCH
- JOIN DICORD
- https://discord.gg/F4BaB3V5U
Script code
--// SERVICES
local Players = game:GetService("Players")
local UIS = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local Camera = workspace.CurrentCamera
local player = Players.LocalPlayer
--// GUI
local gui = Instance.new("ScreenGui")
gui.Parent = player:WaitForChild("PlayerGui")
gui.ResetOnSpawn = false
local frame = Instance.new("Frame", gui)
frame.Size = UDim2.new(0, 280, 0, 220)
frame.Position = UDim2.new(0.5, -140, 0.5, -110)
frame.BackgroundColor3 = Color3.fromRGB(30,30,30)
frame.Active = true
frame.Draggable = true
-- TITLE
local title = Instance.new("TextLabel", frame)
title.Size = UDim2.new(1,0,0,30)
title.BackgroundTransparency = 1
title.Text = "DEVELOPER SCRIPT 0.1"
title.TextColor3 = Color3.new(1,1,1)
-- TOGGLE GUI
local open = true
UIS.InputBegan:Connect(function(i,gp)
if not gp and i.KeyCode == Enum.KeyCode.RightShift then
open = not open
frame.Visible = open
end
end)
--// SPEED (WORKS)
local speed = 16
local box = Instance.new("TextBox", frame)
box.Size = UDim2.new(0.8,0,0,30)
box.Position = UDim2.new(0.1,0,0.2,0)
box.PlaceholderText = "Speed (0-150)"
box.BackgroundColor3 = Color3.fromRGB(50,50,50)
box.TextColor3 = Color3.new(1,1,1)
box.FocusLost:Connect(function(enter)
if enter then
local n = tonumber(box.Text)
if n then
speed = math.clamp(n,0,150)
end
box.Text = ""
end
end)
RunService.Heartbeat:Connect(function()
local char = player.Character
if char and char:FindFirstChildOfClass("Humanoid") then
char:FindFirstChildOfClass("Humanoid").WalkSpeed = speed
end
end)
--// ESP (REAL WORKING using Highlight)
local espEnabled = false
local function applyESP(plr)
if plr == player then return end
local function charAdded(char)
if not espEnabled then return end
local h = Instance.new("Highlight")
h.FillColor = Color3.fromRGB(255,0,0)
h.OutlineColor = Color3.new(1,1,1)
h.Parent = char
end
if plr.Character then
charAdded(plr.Character)
end
plr.CharacterAdded:Connect(charAdded)
end
for _,p in pairs(Players:GetPlayers()) do
applyESP(p)
end
Players.PlayerAdded:Connect(applyESP)
local espBtn = Instance.new("TextButton", frame)
espBtn.Size = UDim2.new(0.8,0,0,30)
espBtn.Position = UDim2.new(0.1,0,0.4,0)
espBtn.Text = "ESP: OFF"
espBtn.BackgroundColor3 = Color3.fromRGB(50,50,50)
espBtn.TextColor3 = Color3.new(1,1,1)
espBtn.MouseButton1Click:Connect(function()
espEnabled = not espEnabled
espBtn.Text = espEnabled and "ESP: ON" or "ESP: OFF"
for _,plr in pairs(Players:GetPlayers()) do
if plr ~= player and plr.Character then
for _,v in pairs(plr.Character:GetChildren()) do
if v:IsA("Highlight") then v:Destroy() end
end
end
end
if espEnabled then
for _,plr in pairs(Players:GetPlayers()) do
applyESP(plr)
end
end
end)
--// AIMBOT (SIMPLE + WORKING)
local aimbot = false
local function getClosest()
local closest, dist = nil, math.huge
for _,plr in pairs(Players:GetPlayers()) do
if plr ~= player and plr.Character and plr.Character:FindFirstChild("Head") then
local pos,vis = Camera:WorldToViewportPoint(plr.Character.Head.Position)
if vis then
local mag = (Vector2.new(pos.X,pos.Y) - UIS:GetMouseLocation()).Magnitude
if mag < dist then
dist = mag
closest = plr
end
end
end
end
return closest
end
RunService.RenderStepped:Connect(function()
if aimbot then
local target = getClosest()
if target and target.Character then
Camera.CFrame = CFrame.new(Camera.CFrame.Position, target.Character.Head.Position)
end
end
end)
local aimBtn = Instance.new("TextButton", frame)
aimBtn.Size = UDim2.new(0.8,0,0,30)
aimBtn.Position = UDim2.new(0.1,0,0.6,0)
aimBtn.Text = "Aimbot: OFF"
aimBtn.BackgroundColor3 = Color3.fromRGB(50,50,50)
aimBtn.TextColor3 = Color3.new(1,1,1)
aimBtn.MouseButton1Click:Connect(function()
aimbot = not aimbot
aimBtn.Text = aimbot and "Aimbot: ON" or "Aimbot: OFF"
end)
--// DISCORD
local dc = Instance.new("TextButton", frame)
dc.Size = UDim2.new(0.8,0,0,25)
dc.Position = UDim2.new(0.1,0,0.8,0)
dc.Text = "Copy Discord"
dc.BackgroundColor3 = Color3.fromRGB(88,101,242)
dc.TextColor3 = Color3.new(1,1,1)
dc.MouseButton1Click:Connect(function()
if setclipboard then
setclipboard("https://discord.gg/F4BaB3V5U")
end
end)
Long script — expand to view syntax highlighting
Discussion
0 / 20Log in to join the discussion.
No comments yetBe the first to ask a question or leave feedback.
ONE TAP SCRIPT [AIMBOT + ESP]