Roblox Script -- Bloxton Mystery | Role ESP | Prints Username, Name Hider, and Role

 


game : https://www.roblox.com/games/7817016260/Bloxston-Mystery-VAMPIRE


How to use:

Enter a match, then when you get sent to Bloxston.

Wait until it turns to night and you get sent home.

Once everyone is in their home, just press Execute.


Title Esp has been Patched.


Role ESP if Red then they are Either Mafia or Vampire if you choose.

Code:

local Role = "Mafia" -- Vampire, Mafia


for i,v in pairs(game:GetService("Workspace").Game:GetChildren()) do

    if v.Name == Role then

        for i,b in pairs(v:GetDescendants()) do

            if b.ClassName == "Part" then

                local cham = Instance.new("BoxHandleAdornment", b)

                cham.ZIndex = 10

                cham.Adornee = b

                cham.AlwaysOnTop = true

                cham.Size = b.Size

                cham.Transparency = 0

                cham.Color3 = Color3.new(255,0,0)

                cham.Name = "Cham"

            end

        end

    end

end


This print's their info in dev console [Press F9 to open DevConsole] {Use this in Town. You can find everyone's Role, Name, and PlayerName.}

Code:

-- Prints their Username, Temp Names, and Roles.

for i,v in pairs(game:GetService("Players"):GetChildren()) do

    print("-----------------------------------------------------------------------------------------------------------")

    print(v.Name .. " | ".. v.Character.HumanoidRootPart.Overhead.PlayerName.Text .. " | " .. v.PlayerData.Role.Value)

    print("-----------------------------------------------------------------------------------------------------------")

end

Previous Post Next Post