Timebomb Duels [Alpha]
5.4k Views

Auto play time bomb dudels new

Timebomb Duels [Alpha]Uploaded by
7 months ago
Please login to perform these actions:

Description

I've improved the AI to make it smarter, but don't expect too much. Updates will continue, and if everyone joins Discord, they'll receive updates every day, or possibly more often, because I'm busy with work. Therefore, I won't explain much; everyone can play along.

View Raw
Edited By: asnonlk0011445 Download


Comments
4
User profile picture
lattesoftworks 7 months ago
very buggy when i try and disable 1 button i cant
User profile picture
KAYKAY_18 6 months ago
Discord link expired, new link?
User profile picture
Scripter01 5 months ago
You cant disable it and its *
User profile picture
wanna7938 2 weeks ago
guys, I made a slightly improved version of this script, you can stop it now and some changes are made on juke and attack, here Is script local a = game:GetService("Players") local b = game:GetService("RunService") local c = game:GetService("PathfindingService") local d = a.LocalPlayer local e, f, g -- Create UI local h = Instance.new("ScreenGui", d.PlayerGui) h.Name = "AI_Commander" h.IgnoreGuiInset = true -- Helper to create buttons local function i(name, pos, color) local m = Instance.new("TextButton", h) m.Name = name m.Size = UDim2.new(0.2, 0, 0.08, 0) m.Position = pos m.BackgroundColor3 = color m.TextColor3 = Color3.new(1, 1, 1) m.Font = Enum.Font.SourceSansBold m.TextSize = 14 m.BorderSizePixel = 2 return m end -- Create buttons local s_btn = i("Stop", UDim2.new(0.02, 0, 0.2, 0), Color3.fromRGB(100, 100, 100)) local n = i("Attack", UDim2.new(0.02, 0, 0.3, 0), Color3.fromRGB(150, 0, 0)) local o = i("Juke", UDim2.new(0.02, 0, 0.4, 0), Color3.fromRGB(0, 100, 200)) local p = i("Balance", UDim2.new(0.02, 0, 0.5, 0), Color3.fromRGB(0, 150, 0)) local q = "None" local function r() n.Text = "Attack: " .. (q == "Attack" and "ON" or "OFF") o.Text = "Juke: " .. (q == "Juke" and "ON" or "OFF") p.Text = "Balance: " .. (q == "Balance" and "ON" or "OFF") s_btn.Text = "Stop" end n.MouseButton1Click:Connect(function() q = "Attack" r() end) o.MouseButton1Click:Connect(function() q = "Juke" r() end) p.MouseButton1Click:Connect(function() q = "Balance" r() end) s_btn.MouseButton1Click:Connect(function() q = "None" r() if f and g then f.AutoRotate = true; f:MoveTo(g.Position) end end) local function s(t) e = t f = t:WaitForChild("Humanoid", 10) g = t:WaitForChild("HumanoidRootPart", 10) if
Please Login to add a comment.