RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a glitch effect"
-- client script (StarterCharacterScripts) local glitch = Instance.new("ImageLabel") glitch.Parent = game.StarterGui glitch.Size = UDim2.new(1, 0, 1, 0) glitch.BackgroundTransparency = 1 glitch.Image = "rbxassetid://your_glitch_effect_asset_id" glitch.ImageTransparency = 0.5 while true do glitch.Position = UDim2.new(math.random(), 0, math.random(), 0) wait(0.1) end