Roblox FE Giant Head Script Open Sourced [R15 Games with RTHRO head]

Basically, you need to be in a R15 games, with a RTHRO head and you can turn your head into giant head.



Scripts: 

local HumValues = {}

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

local LC = LP.Character

local LB = LP.Backpack

local Hum = LC.Humanoid

local Head = LC:FindFirstChild('Head')

local Mesh = Head:FindFirstChild('Mesh')

Head.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)


if not LC or not Hum or not Head or not Mesh or not Hum:FindFirstChildWhichIsA('NumberValue') or not Mesh:FindFirstChild('OriginalSize') then

    return

end


for _, v in next, Hum:GetChildren() do

    if v:IsA('NumberValue') then

        table.insert(HumValues, v)

    end

end


for i = 1, #HumValues do

    Mesh:WaitForChild('OriginalSize')

    for _, v in next, Mesh:GetChildren() do

        if v:IsA('Vector3Value') and v.Name == 'OriginalSize' then

            v:Destroy()

        end

    end

    Head:WaitForChild('OriginalSize')

    for _, v in next, Head:GetChildren() do

        if v:IsA('Vector3Value') and v.Name == 'OriginalSize' then

            v:Destroy()

        end

    end

    HumValues[i]:Destroy()

    wait(.2)

end

Head.CanCollide = false

Hum.HipHeight = 16

Comments

Post a Comment

Popular posts from this blog

ROBLOX FE Gravity Gun [Works for unanchored objects only like cars]

Roblox Teleport All to me script

How to use sk8r roblox exploit?