ExecutorForALLdomain

intro ok

Nov 15th, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.93 KB | None | 0 0
  1. -- intro made by water_hax
  2. local intro = Instance.new("ScreenGui")
  3. local O = Instance.new("Frame")
  4. local GG = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local credit = Instance.new("TextLabel")
  7. intro.Name = "intro"
  8. intro.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9. intro.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10. O.Name = "O"
  11. O.Parent = intro
  12. O.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  13. O.BorderColor3 = Color3.fromRGB(0, 0, 0)
  14. O.BorderSizePixel = 0
  15. O.Position = UDim2.new(0.312863082, 0, 0.263959378, 0)
  16. O.Size = UDim2.new(0, 230, 0, 235)
  17. GG.Name = "GG"
  18. GG.Parent = O
  19. GG.BackgroundColor3 = Color3.fromRGB(36, 36, 36)
  20. GG.BorderColor3 = Color3.fromRGB(0, 0, 0)
  21. GG.BorderSizePixel = 0
  22. GG.Position = UDim2.new(0.997257769, 0, -0.00104409072, 0)
  23. GG.Size = UDim2.new(0, 230, 0, 235)
  24.  
  25. title.Name = "title"
  26. title.Parent = O
  27. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  28. title.BackgroundTransparency = 1.000
  29. title.BorderColor3 = Color3.fromRGB(0, 0, 0)
  30. title.BorderSizePixel = 0
  31. title.Position = UDim2.new(0.221738994, 0, 0.217021272, 0)
  32. title.Size = UDim2.new(0, 255, 0, 50)
  33. title.ZIndex = 1111111116
  34. title.Font = Enum.Font.JosefinSans
  35. title.Text = "Server Script Panel"
  36. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  37. title.TextSize = 32.000
  38.  
  39. credit.Name = "credit"
  40. credit.Parent = O
  41. credit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  42. credit.BackgroundTransparency = 1.000
  43. credit.BorderColor3 = Color3.fromRGB(0, 0, 0)
  44. credit.BorderSizePixel = 0
  45. credit.Position = UDim2.new(1.23478258, 0, 0.842553198, 0)
  46. credit.Size = UDim2.new(0, 167, 0, 36)
  47. credit.ZIndex = 165
  48. credit.Font = Enum.Font.JosefinSans
  49. credit.Text = "Developed By waterhax"
  50. credit.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. credit.TextSize = 15.000
  52. local function LPEJ_fake_script()
  53.     local script = Instance.new('LocalScript', O)
  54.  
  55.     local Tween = game:GetService("TweenService")
  56.    
  57.    
  58.    
  59.     local OG_Size = UDim2.new(0, 230,0, 1)
  60.    
  61.     local EndSize = UDim2.new(0, 230,0, 235)
  62.    
  63.     local GoLeft = UDim2.new(0, -1,0, 235)
  64.    
  65.     local OFRAME = script.Parent
  66.     local GGFrame = OFRAME.GG
  67.     local title = OFRAME.title
  68.     local credit = OFRAME.credit
  69.    
  70.     local function Hide()
  71.     OFRAME.Size = OG_Size
  72.     GGFrame.Size = OG_Size
  73.     title.Visible = false
  74.     credit.Visible = false
  75.     end
  76.    
  77.    
  78.     local function Open()
  79.     Tween:Create(OFRAME, TweenInfo.new(0.5), {Size = EndSize}):Play()
  80.     Tween:Create(GGFrame, TweenInfo.new(0.5), {Size = EndSize}):Play()
  81.    
  82.         title.Visible = true
  83.         credit.Visible = true
  84.     end
  85.    
  86.     local function Goto()
  87.         Tween:Create(GGFrame, TweenInfo.new(0.5), {Size = GoLeft}):Play()
  88.         Tween:Create(OFRAME, TweenInfo.new(0.5), {Size = GoLeft}):Play()
  89.         wait()
  90.         title.Visible = false
  91.         credit.Visible = false
  92.         task.wait(0.4)
  93.         OFRAME.Visible = false
  94.         GGFrame.Visible = false
  95.     end
  96.    
  97.     Hide()
  98.     Open()
  99.     wait(1)
  100.     Goto()
  101.    
  102.    
  103.     task.wait(0.5)
  104.     OFRAME.Parent:Destroy()
  105.    
  106. end
  107. coroutine.wrap(LPEJ_fake_script)()
  108.  
Add Comment
Please, Sign In to add comment