Bloxston Mystery Script | TITLE ESP, PRINTS USERNAME, NAME HIDER & ROLE

Created by Innocence#4346

Features:

  • TITLE ESP
  • PRINTS USERNAME
  • NAME HIDER
  • ROLE
  • HOW TO USE:
  • 1. Enter a match
  • 2. When you get to Bloxston, wait until it turns night and you get sent home
  • 3. Once everyone is in their home, just press execute

Title ESP v

for i,v in pairs(game:GetService("Workspace").Game:GetDescendants()) do
    if v.Name == "Head" then
        local bill = Instance.new("BillboardGui", v)
        bill.Name = "RoleFinder"
        bill.Size = UDim2.new(0,3,0,3)
        bill.Adornee = v
        bill.AlwaysOnTop = true
        local name = Instance.new("TextLabel", bill)
        name.TextWrapped = false
        name.Text = v.Parent.Parent.Name
        name.Size = UDim2.new(10,0,10,0)
        name.TextYAlignment = "Top"
        name.TextColor3 = Color3.new(255,0,0)
        name.BackgroundTransparency = 1
        task.wait()
    end
end

PRINTS THEIR INFO TO CONSOLE v

-- 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