Advertisement
GUI_Maker_Roblox

Locked in ALine

Dec 24th, 2024
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.25 KB | None | 0 0
  1. writefile("alienaudio.mp3", request({ Url = "https://github.com/invisb/maxhubassets/raw/refs/heads/main/alienaudio.mp3", Method = "GET" }).Body)
  2.     writefile("alienvideo.webm", request({ Url = "https://github.com/invisb/maxhubassets/raw/refs/heads/main/ssstik.io_1734937260360.webm", Method = "GET" }).Body)
  3.  
  4.     local items = {
  5.         ["_ScreenGui"] = Instance.new("ScreenGui"),
  6.         ["_VideoFrame"] = Instance.new("VideoFrame"),
  7.     }
  8.  
  9.     items["_ScreenGui"].ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.     items["_ScreenGui"].IgnoreGuiInset = true
  11.     items["_ScreenGui"].Parent = game.Players.LocalPlayer.PlayerGui
  12.  
  13.     items["_VideoFrame"].AnchorPoint = Vector2.new(0.5, 0.5)
  14.     items["_VideoFrame"].Position = UDim2.new(0.5, 0, 0.5, 0)
  15.     items["_VideoFrame"].Size = UDim2.new(1, 0, 1, 0)
  16.     items["_VideoFrame"].ZIndex = 9999
  17.     items["_VideoFrame"].Parent = items["_ScreenGui"]
  18.     items["_VideoFrame"].Video = getcustomasset("alienvideo.webm", true)
  19.  
  20.     local sound = Instance.new("Sound", workspace)
  21.     sound.SoundId = getcustomasset("alienaudio.mp3", true)
  22.     sound.Volume = 0.8
  23.     sound:Play()
  24.  
  25.     items["_VideoFrame"].Looped = false
  26.     items["_VideoFrame"]:Play()
  27.  
  28.     items["_VideoFrame"].Ended:Wait()
  29.  
  30.     items["_ScreenGui"]:Destroy()
  31.     delfile("alienaudio.mp3")
  32.     delfile("alienvideo.webm")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement