0% found this document useful (0 votes)
2K views1 page

Team FAT Decalspam

The document contains a Lua script designed for Roblox that applies a specific decal to all BasePart objects within the game's Workspace. It creates six instances of Decal for each BasePart, assigning the same texture and different faces (Front, Back, Right, Left, Top, Bottom). Additionally, it includes a recursive function to traverse through all children in the Workspace.

Uploaded by

mavis77712
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views1 page

Team FAT Decalspam

The document contains a Lua script designed for Roblox that applies a specific decal to all BasePart objects within the game's Workspace. It creates six instances of Decal for each BasePart, assigning the same texture and different faces (Front, Back, Right, Left, Top, Bottom). Additionally, it includes a recursive function to traverse through all children in the Workspace.

Uploaded by

mavis77712
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

decalID = 11688383656

function exPro(root)
for _, v in pairs(root:GetChildren()) do
if v:IsA("BasePart") then
local One = Instance.new("Decal", v)
local Two = Instance.new("Decal", v)
local Three = Instance.new("Decal", v)
local Four = Instance.new("Decal", v)
local Five = Instance.new("Decal", v)
local Six = Instance.new("Decal", v)
One.Texture = "http://www.roblox.com/asset/?id="..decalID
Two.Texture = "http://www.roblox.com/asset/?id="..decalID
Three.Texture = "http://www.roblox.com/asset/?id="..decalID
Four.Texture = "http://www.roblox.com/asset/?id="..decalID
Five.Texture = "http://www.roblox.com/asset/?id="..decalID
Six.Texture = "http://www.roblox.com/asset/?id="..decalID
One.Face = "Front"
Two.Face = "Back"
Three.Face = "Right"
Four.Face = "Left"
Five.Face = "Top"
Six.Face = "Bottom"
end
exPro(v)
end
end
function asdf(root)
for _, v in pairs(root:GetChildren()) do
asdf(v)
end
end
exPro(game.Workspace)
asdf(game.Workspace)

You might also like