--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("ImageLabel") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Name = "Frame" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Size = UDim2.new(0, 1868, 0, 889) Frame.Image = "http://www.roblox.com/asset/?id=131597599090748" -- Scripts: local function NYELFH_fake_script() -- Frame.Script local script = Instance.new('Script', Frame) script.Parent.Visible = false wait (0) ----------- How long it will take for the GUI to appear script.Parent.Visible = true wait (6) ----------- How long it will take for the GUI to disappear script.Parent.Visible = false end coroutine.wrap(NYELFH_fake_script)()