Posts

Showing posts with the label open source

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

Image
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:Destro...

Roblox Horrific Housing Script Infinite Money and Level! | Open Sourced

Image
Game link:  Horrific Housing Auto Complete Mission Farm Script (Level up+Money) local RunService = game:GetService( "RunService" ) local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) local Remote = ReplicatedStorage.EventRemotes:WaitForChild( "GhasterBlaster" ) RunService.RenderStepped:Connect( function () Remote:FireServer( "MiissionSuccess3" ) end ) Money hack script (instant) game .ReplicatedStorage .ShopPurchase :FireServer(-10000 , " Ornament ") Replace -10000 with how many money do you want. For example, if you want 500$ then put -500. Enjoy!