ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script πŸ“Œ
227 Views

Loop By BloxAdmin

Universal Script πŸ“ŒUploaded by
3 months ago
Please login to perform these actions:

Description

local player = game.Players.LocalPlayer -- Create ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Parent = player:WaitForChild("PlayerGui") -- Loop forever while true do -- Create text label local text = Instance.new("TextLabel") text.Parent = screenGui text.Size = UDim2.new(0.8, 0, 0.5, 0) text.Position = UDim2.new(math.random(), -100, math.random(), -50) text.BackgroundTransparency = 1 text.TextScaled = true text.Font = Enum.Font.Arcade text.Text = "Roblox user: @BioxAbmin" text.TextColor3 = Color3.fromRGB(255, 0, 0) -- Flash effect for i = 1, 5 do text.Visible = not text.Visible wait(3) end -- Remove after short time wait(2) text:Destroy() wait(10) -- time between jumpscares end

View Raw
Edited By: Goodyless Download


Comments
0
No comments. Please Login to add a comment.