1. Homepage
  2. Roblox Scripts
  3. Blademaster Anti TP Bypass (OPEN SOURCE)

Blademaster Anti TP Bypass (OPEN SOURCE)

UNDETECTED Blademaster Anti TP Bypass

 Last Version: 09/12/2023

 Developers: Rise Valco#4426

This Blademaster Anti TP Bypass cheat bypasses the anti tp anti-exploit in the game Blademaster. It allows you to teleport without dying to there anti-tp

Blademaster Anti TP Bypass

Question : In my game I wanted to do a anti teleport exploit. And I found one on the devfourm but it used positions instead of CFrames which is glitchy. I assume that you would see if the player has moved farther than normal. But how would I do this?

Reply :

Use the Heartbeat runservice, its good for stuff like this. Ideally, you get their latest position and then check if their new position is much greater than usual

debounce = false
Check = false 
humanoidrootpart = Player.HumanoidRootPart
maxDistance = 44
RunService.Heartbeat:Connect(function()
    if humanoidrootpart then
        if Check == false and debounce == false then	
            debounce = true
            LastestPos = humanoidrootpart.Position	
            wait(.1)
            Check = true
            debounce = false
        else
            if debounce == false then	
                local NewPos = humanoidrootpart.Position	
                if (LastestPos - NewPos).Magnitude > maxDistance then
                    -- KICKKKED 
                end	
                Check = false
        end
    end
end)

This checks if the player moves (maxDistance) in about a mili-second, if a lot then the person is teleporting or speed hacking, then you punish them however.

Click here for the latest roblox cheats on our website

Join our discord server by click here



Write a Comment

You must be logged in to post a comment.