Advertisement
AchilleTheScRiPters

Intro

Dec 18th, 2022 (edited)
446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.85 KB | Gaming | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local Main = Instance.new("ScreenGui")
  7. local LabelM = Instance.new("TextLabel")
  8. local TextLabel = Instance.new("TextLabel")
  9. local UICorner = Instance.new("UICorner")
  10. local Corner0 = Instance.new("TextLabel")
  11. local UICorner_2 = Instance.new("UICorner")
  12. local Corner1 = Instance.new("TextLabel")
  13. local UICorner_3 = Instance.new("UICorner")
  14.  
  15. --Properties:
  16.  
  17. Main.Name = "Main"
  18. Main.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. Main.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. LabelM.Name = "LabelM"
  22. LabelM.Parent = Main
  23. LabelM.BackgroundColor3 = Color3.fromRGB(19, 70, 255)
  24. LabelM.BorderColor3 = Color3.fromRGB(230, 197, 11)
  25. LabelM.BorderSizePixel = 0
  26. LabelM.Position = UDim2.new(0.317133456, 0, 0.339506119, 0)
  27. LabelM.Size = UDim2.new(0, 443, 0, 272)
  28. LabelM.Font = Enum.Font.SourceSans
  29. LabelM.Text = ""
  30. LabelM.TextColor3 = Color3.fromRGB(0, 0, 0)
  31. LabelM.TextSize = 14.000
  32.  
  33. TextLabel.Parent = LabelM
  34. TextLabel.BackgroundColor3 = Color3.fromRGB(8, 140, 255)
  35. TextLabel.BorderColor3 = Color3.fromRGB(230, 197, 11)
  36. TextLabel.BorderSizePixel = 3
  37. TextLabel.Position = UDim2.new(0, 0, 0.349264711, 0)
  38. TextLabel.Size = UDim2.new(0, 443, 0, 82)
  39. TextLabel.Font = Enum.Font.SourceSans
  40. TextLabel.Text = "..."
  41. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. TextLabel.TextSize = 31.000
  43.  
  44. UICorner.CornerRadius = UDim.new(0, 5)
  45. UICorner.Parent = TextLabel
  46.  
  47. -- Scripts:
  48.  
  49. local function KNXQG_fake_script() -- TextLabel.Script
  50.     local script = Instance.new('Script', TextLabel)
  51.  
  52.     wait(3)
  53.     script.Parent.Text = ("Hello Player!, Made by: THE_GOD!, Enjoy!")
  54.     wait(6)
  55.     script.Parent.Text = "Hello player!"
  56.     --animation 1
  57.     script.Parent.Transparency = 1
  58.     wait(1.0)
  59.     script.Parent.Parent.Transparency = 1
  60.     wait(0.8)
  61.    
  62.     script.Parent.Parent.Parent:Destroy()
  63. end
  64. coroutine.wrap(KNXQG_fake_script)()
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement