Posts

Showing posts with the label roblox fe script

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

Image
 This script allows you to control any unanchored objects like cars and doors using the telekenesis tool  The game I used it on:  (8) Brookhaven 🏡RP - Roblox Script: function sandbox(var,func) local env = getfenv(func) local newenv = setmetatable({},{ __index = function(self,k) if k=="script" then return var else return env[k] end end, }) setfenv(func,newenv) return func end cors = {} mas = Instance.new("Model",game:GetService("Lighting")) Tool0 = Instance.new("Tool") Part1 = Instance.new("Part") CylinderMesh2 = Instance.new("CylinderMesh") Part3 = Instance.new("Part") LocalScript4 = Instance.new("LocalScript") Script5 = Instance.new("Script") LocalScript6 = Instance.new("LocalScript") Script7 = Instance.new("Script") LocalScript8 = Instance.new("LocalScript") Part9 = Instance.new("Part") Script10 = Instance.new("Script...

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