Categories > Exploiting > Roblox >

Can someone make a script for me?

Posts: 2

Threads: 1

Joined: Feb, 2022

Reputation: 0

Posted

Hi, i need a script for tank warfare in roblox

Link: https://www.roblox.com/games/4011063766/Tank-Warfare

 

Old onesie are not working so please make me a new one. Thanks

 

I also use krnl

  • 0

Posts: 207

Threads: 5

Joined: Sep, 2021

Reputation: 4

Replied

I doubt anyone would make you a script for free

 

  • 0

MainDab

Main_EX

Posts: 467

Threads: 39

Joined: Sep, 2020

Reputation: 11

Replied

may i suggest a better game

 

  • 0

Posts: 202

Threads: 59

Joined: Apr, 2020

Reputation: 3

Replied

GodeMode:

 

local lp = game:GetService('Players').LocalPlayer

workspace[lp.Name].Hitbox:ClearAllChildren()

workspace[lp.Name].Collider:Destroy()

 

KillAura:

 

local RELOAD = 1.5

local DISTANCE = math.huge

 

-------------------------------------------------------------------------

 

local lp = game:GetService('Players').LocalPlayer

local target, prevTarget, args

 

local function notifyNewTarget(t)

  pcall(

    function()

      game:GetService('StarterGui'):SetCore('SendNotification', {

        Title = 'New target',

        Text = 'Changed target to ' .. t.Name,

        Duration = 1

      })

    end

  )

end

 

local function playerCheck(p)

  return

    p.Name ~= lp.Name and

    p:WaitForChild('Stats') and

    p.Stats:WaitForChild('Team') and

    p.Stats.Team.Value ~= lp.Stats.Team.Value and

    workspace:FindFirstChild(p.Name) and

    workspace[p.Name]:WaitForChild('Health') and

    workspace[p.Name].Health.Value > 0 and

    workspace[p.Name]:FindFirstChild('Hitbox') and

    workspace[p.Name].Hitbox:FindFirstChild(1)

end

 

local function getTarget()

  local basePart = workspace[lp.Name]:FindFirstChild('Base')

 

  if (basePart) then

    local selfPos = basePart.Position

    local nearestDist = math.huge

    local nearestPlayer

 

    for _, v in next, game:GetService('Players'):GetPlayers() do

      if (playerCheck(v) and workspace[v.Name]:FindFirstChild('Base')) then

        local distDiff = (selfPos - workspace[v.Name].Base.Position).Magnitude

        if (distDiff <= DISTANCE and distDiff < nearestDist) then

          nearestDist = distDiff

          nearestPlayer = v

        end

      end

    end

    return nearestPlayer

  end

end

 

while(wait(RELOAD)) do

  prevTarget = target 

  target = getTarget()

 

  if (target ~= prevTarget) then notifyNewTarget(target) end

  

  if (target) then

    args = {

      [1] = workspace[target.Name].Hitbox[1],

      [2] = Vector3.new(math.random(-999, 999), math.random(-999, 999), math.random(-999, 999)),

      [3] = workspace[target.Name].Hitbox[1].Position,

      [4] = 'Primary',

      [5] = Vector3.new(math.random(-999, 999), math.random(-999, 999), math.random(-999, 999))

    }

  end

 

  game:GetService('Players')[lp.Name].Backpack.aWeaponaEventB.bWeaponxEventy:FireServer(args)

end

 

 

Credits: 

Clydeo

 

No clue if this works it was made in 2020 might as well use an alt and see if it works.

  • 0

Posts: 2

Threads: 1

Joined: Feb, 2022

Reputation: 0

Replied

does this work for krnl?

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )