-- Creates a giant helmet that looks like a body local tool = Instance.new("Tool") tool.Name = "GiantAvatar" tool.GripPos = Vector3.new(0, -10, 0) -- Moves the tool down to cover bodylocal handle = Instance.new("Part") handle.Size = Vector3.new(20, 30, 10) -- Giant size handle.Transparency = 0.3 handle.BrickColor = BrickColor.new("Bright red") handle.Parent = tool
tool.Parent = game.Players.LocalPlayer.Backpack game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):Activate()
Effect: Other players see a giant red block following you. Not perfect, but visible.
-- FE Giant Tall Avatar Script (Local Visual) local plr = game.Players.LocalPlayer local char = plr.Character or plr.CharacterAdded:wait() local hum = char:WaitForChild("Humanoid") local root = char:WaitForChild("HumanoidRootPart")-- Scale up hum.HipHeight = 10 -- Makes legs longer root.Size = Vector3.new(4, 4, 4) -- Wide torso fe giant tall avatar script free
-- Camera adjustment game.Workspace.CurrentCamera.CameraSubject = root game.Workspace.CurrentCamera.FieldOfView = 70
Effect: You look tall to yourself; others see you glitching.
Before downloading anything, you need to understand the acronym FE (Filtering Enabled). In 2017, Roblox mandated FE for all games. This means the server must authorize all changes. -- Creates a giant helmet that looks like
A true FE giant tall avatar script allows other players to see you as a giant. If a script is not FE, you are just playing pretend. For the "wow factor," you need an FE-compatible script.