Categories > Exploiting > Roblox >

[RELEASE] Phantom Forces Chams

Posts: 21

Threads: 11

Joined: May, 2021

Reputation: 4

Posted

local players = game:GetService("Players")
local runservice = game:GetService("RunService")

local replication
for i,v in pairs(getgc(true)) do
    if type(v) == "table" and rawget(v, "getbodyparts") then
        replication = v
    end
end

function addChams(player)
    local headVisible = Instance.new("BoxHandleAdornment")
    headVisible.Transparency = 0.5
    headVisible.ZIndex = 100
    headVisible.AlwaysOnTop = false
    headVisible.Color3 = Color3.fromRGB(200, 0, 0)
    headVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local torsoVisible = Instance.new("BoxHandleAdornment")
    torsoVisible.Transparency = 0.5
    torsoVisible.ZIndex = 100
    torsoVisible.AlwaysOnTop = false
    torsoVisible.Color3 = Color3.fromRGB(200, 0, 0)
    torsoVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local rightarmVisible = Instance.new("BoxHandleAdornment")
    rightarmVisible.Transparency = 0.5
    rightarmVisible.ZIndex = 100
    rightarmVisible.AlwaysOnTop = false
    rightarmVisible.Color3 = Color3.fromRGB(200, 0, 0)
    rightarmVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local leftarmVisible = Instance.new("BoxHandleAdornment")
    leftarmVisible.Transparency = 0.5
    leftarmVisible.ZIndex = 100
    leftarmVisible.AlwaysOnTop = false
    leftarmVisible.Color3 = Color3.fromRGB(200, 0, 0)
    leftarmVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local rightlegVisible = Instance.new("BoxHandleAdornment")
    rightlegVisible.Transparency = 0.5
    rightlegVisible.ZIndex = 100
    rightlegVisible.AlwaysOnTop = false
    rightlegVisible.Color3 = Color3.fromRGB(200, 0, 0)
    rightlegVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local leftlegVisible = Instance.new("BoxHandleAdornment")
    leftlegVisible.Transparency = 0.5
    leftlegVisible.ZIndex = 100
    leftlegVisible.AlwaysOnTop = false
    leftlegVisible.Color3 = Color3.fromRGB(200, 0, 0)
    leftlegVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    --------------------------------------------------------------
    local headNotVisible = Instance.new("BoxHandleAdornment")
    headNotVisible.Transparency = 0.8
    headNotVisible.ZIndex = 4
    headNotVisible.AlwaysOnTop = true
    headNotVisible.Color3 = Color3.fromRGB(255, 255, 255)
    headNotVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local torsoNotVisible = Instance.new("BoxHandleAdornment")
    torsoNotVisible.Transparency = 0.8
    torsoNotVisible.ZIndex = 4
    torsoNotVisible.AlwaysOnTop = true
    torsoNotVisible.Color3 = Color3.fromRGB(255, 255, 255)
    torsoNotVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local rightarmNotVisible = Instance.new("BoxHandleAdornment")
    rightarmNotVisible.Transparency = 0.8
    rightarmNotVisible.ZIndex = 4
    rightarmNotVisible.AlwaysOnTop = true
    rightarmNotVisible.Color3 = Color3.fromRGB(255, 255, 255)
    rightarmNotVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local leftarmNotVisible = Instance.new("BoxHandleAdornment")
    leftarmNotVisible.Transparency = 0.8
    leftarmNotVisible.ZIndex = 4
    leftarmNotVisible.AlwaysOnTop = true
    leftarmNotVisible.Color3 = Color3.fromRGB(255, 255, 255)
    leftarmNotVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local rightlegNotVisible = Instance.new("BoxHandleAdornment")
    rightlegNotVisible.Transparency = 0.8
    rightlegNotVisible.ZIndex = 4
    rightlegNotVisible.AlwaysOnTop = true
    rightlegNotVisible.Color3 = Color3.fromRGB(255, 255, 255)
    rightlegNotVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    local leftlegNotVisible = Instance.new("BoxHandleAdornment")
    leftlegNotVisible.Transparency = 0.8
    leftlegNotVisible.ZIndex = 4
    leftlegNotVisible.AlwaysOnTop = true
    leftlegNotVisible.Color3 = Color3.fromRGB(255, 255, 255)
    leftlegNotVisible.AdornCullingMode = Enum.AdornCullingMode.Never

    runservice.RenderStepped:Connect(function()
        local body = replication.getbodyparts(player)
        if body then
            body = body["rootpart"].Parent
            local _head = body:FindFirstChild("Head")
            local _torso = body:FindFirstChild("Torso")
            local _leftarm = body:FindFirstChild("Left Arm")
            local _rightarm = body:FindFirstChild("Right Arm")
            local _rightleg = body:FindFirstChild("Right Leg")
            local _leftleg = body:FindFirstChild("Left Leg")
            if _head and _torso and _leftarm and _rightarm and _rightleg and _leftleg then
                headVisible.Parent = _head
                headVisible.Adornee = _head
                headVisible.Size = _head.Size + Vector3.new(0.2, 0.2, 0.2)
                headVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)

                headNotVisible.Parent = _head
                headNotVisible.Adornee = _head
                headNotVisible.Size = _head.Size + Vector3.new(0.1, 0.1, 0.1)
                headNotVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)

                ------------
                torsoVisible.Parent = _torso
                torsoVisible.Adornee = _torso
                torsoVisible.Size = _torso.Size + Vector3.new(0.2, 0.2, 0.2)
                torsoVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)

                torsoNotVisible.Parent = _torso
                torsoNotVisible.Adornee = _torso
                torsoNotVisible.Size = _torso.Size + Vector3.new(0.1, 0.1, 0.1)
                torsoNotVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)

                ------------
                leftarmVisible.Parent = _leftarm
                leftarmVisible.Adornee = _leftarm
                leftarmVisible.Size = _leftarm.Size + Vector3.new(0.2, 0.2, 0.2)
                leftarmVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)

                leftarmNotVisible.Parent = _leftarm
                leftarmNotVisible.Adornee = _leftarm
                leftarmNotVisible.Size = _leftarm.Size + Vector3.new(0.1, 0.1, 0.1)
                leftarmNotVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)

                ------------
                rightlegVisible.Parent = _rightleg
                rightlegVisible.Adornee = _rightleg
                rightlegVisible.Size = _rightleg.Size + Vector3.new(0.2, 0.2, 0.2)
                rightlegVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)

                rightlegNotVisible.Parent = _rightleg
                rightlegNotVisible.Adornee = _rightleg
                rightlegNotVisible.Size = _rightleg.Size + Vector3.new(0.1, 0.1, 0.1)
                rightlegNotVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)

                ------------
                leftlegVisible.Parent = _leftleg
                leftlegVisible.Adornee = _leftleg
                leftlegVisible.Size = _leftleg.Size + Vector3.new(0.2, 0.2, 0.2)
                leftlegVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)
                
                leftlegNotVisible.Parent = _leftleg
                leftlegNotVisible.Adornee = _leftleg
                leftlegNotVisible.Size = _leftleg.Size + Vector3.new(0.1, 0.1, 0.1)
                leftlegNotVisible.Visible = (player.TeamColor ~= players.LocalPlayer.TeamColor)
            end
        end
    end)
end

for i,v in pairs(players:GetPlayers()) do
    addChams(v)
end 
players.PlayerAdded:Connect(function(v)
    addChams(v)
end)

i made this in 3 minutes, they turn red when someone is visible

  • 0

mickey#3373

DeepPain

Wyvern

Posts: 476

Threads: 5

Joined: Jul, 2020

Reputation: 55

Replied

Vouch for spoorloos, he's epic

  • 0

My Discord is xwyvern

https://i.imgur.com/mH521VR.png

Pixel12

Zero two enthusiast

Posts: 175

Threads: 5

Joined: May, 2021

Reputation: 1

Replied

Interesting script, great job

  • 0

"Random Quote Here"

Femboy 

thisnamenotgone: "did you know pixel12 is very smexy and is very kool"

Cyros

Pushing the Bytes

Posts: 544

Threads: 26

Joined: Feb, 2021

Reputation: 17

Replied

Put in Scripts, BTW vouch

 

  • 0

Shadow.lol Forum Admin

Bunni.lol Staff Lead

Xenon Founder & Developer

Bones

deez nuts

Posts: 353

Threads: 10

Joined: Mar, 2021

Reputation: 11

Replied

Ooh let me try it out.

Nice release

  • 0

Who's Deez?

Users viewing this thread:

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