I want to make my gui that have 4 corner thingy that looks like this
2 Likes
Pretty sure that’s just custom made in a software like photoshop or something
1 Like
You can use image or stroke with gradiant 2 gradiant that have number squence to transparent from 0.1 to 0.9 the value is 1
0.1 and 0.9 is the time so create one then duplicate it And change the rotation 90 deg
local uiGradient = -- your UIGradient instance here
uiGradient.Transparency = NumberSequence.new({
NumberSequenceKeypoint.new(0, 1),
NumberSequenceKeypoint.new(0.1, 1),
NumberSequenceKeypoint.new(0.101, 0),
NumberSequenceKeypoint.new(0.899, 0),
NumberSequenceKeypoint.new(0.9, 1),
NumberSequenceKeypoint.new(1, 1),
})
2 Likes