local Slice = Instance.new("Decal") Slice.Parent = Part Slice.Texture = "http://www.roblox.com/asset/?id=275713829" Slice.Face = 1 Slice.Transparency = 0
I was wondering if it were possible to rotate a decal and if so how?
No, not the decal itself. But rotating the part it's on should work just fine.
Example:
local part = Instance.new("Part",workspace) local d = Instance.new("Decal",part) part.TopSurface="Smooth" part.BottomSurface="Smooth" part.Anchored=true part.Size=Vector3.new(5,5,1) part.CFrame=CFrame.new(0,50,0) while wait() do part.CFrame = part.CFrame * CFrame.Angles(0,0,1/10) end
CodingEvolution is right.