Advertisement
MisterCr1stal

FATON_INTRO

May 7th, 2022
869
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.43 KB | None | 0 0
  1. --//Faton-Ware loading intro script.
  2. --//Faton-Ware development by NezyGhoul#8130
  3.  
  4.  
  5. local FATON_INTRO = Instance.new("ScreenGui")
  6. local MAIN_FORM = Instance.new("Frame")
  7. local UICorner = Instance.new("UICorner")
  8. local UP_PANEL = Instance.new("Frame")
  9. local UICorner_2 = Instance.new("UICorner")
  10. local FATON_ICON = Instance.new("ImageLabel")
  11. local FATON_TEMPLATE = Instance.new("TextLabel")
  12. local FATON_TEXT = Instance.new("TextLabel")
  13. local FATON_TEXT2 = Instance.new("TextLabel")
  14.  
  15.  
  16. FATON_INTRO.Name = "FATON_INTRO"
  17. FATON_INTRO.Parent = game.CoreGui
  18. FATON_INTRO.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. MAIN_FORM.Name = "MAIN_FORM"
  21. MAIN_FORM.Parent = FATON_INTRO
  22. MAIN_FORM.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  23. MAIN_FORM.BackgroundTransparency = 0.200
  24. MAIN_FORM.Position = UDim2.new(-0.823000014, 0, 0.855000019, 0)
  25. MAIN_FORM.Size = UDim2.new(0.163573086, 0, 0.123260438, 0)
  26.  
  27. UICorner.Parent = MAIN_FORM
  28.  
  29. UP_PANEL.Name = "UP_PANEL"
  30. UP_PANEL.Parent = MAIN_FORM
  31. UP_PANEL.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  32. UP_PANEL.BackgroundTransparency = 0.160
  33. UP_PANEL.Position = UDim2.new(0, 0, -0.0131220659, 0)
  34. UP_PANEL.Size = UDim2.new(1, 0, 0.322580636, 0)
  35.  
  36. UICorner_2.Parent = UP_PANEL
  37.  
  38. FATON_ICON.Name = "FATON_ICON"
  39. FATON_ICON.Parent = MAIN_FORM
  40. FATON_ICON.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. FATON_ICON.BackgroundTransparency = 1.000
  42. FATON_ICON.Position = UDim2.new(0, 0, -0.0161290318, 0)
  43. FATON_ICON.Size = UDim2.new(0.148936167, 0, 0.309458584, 0)
  44. FATON_ICON.Image = "http://www.roblox.com/asset/?id=9567440597"
  45.  
  46. FATON_TEMPLATE.Name = "FATON_TEMPLATE"
  47. FATON_TEMPLATE.Parent = MAIN_FORM
  48. FATON_TEMPLATE.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  49. FATON_TEMPLATE.BackgroundTransparency = 1.000
  50. FATON_TEMPLATE.Position = UDim2.new(0.148936167, 0, 0, 0)
  51. FATON_TEMPLATE.Size = UDim2.new(0.851063848, 0, 0.293330044, 0)
  52. FATON_TEMPLATE.Font = Enum.Font.SourceSans
  53. FATON_TEMPLATE.Text = "Faton-Ware!"
  54. FATON_TEMPLATE.TextColor3 = Color3.fromRGB(121, 189, 195)
  55. FATON_TEMPLATE.TextScaled = true
  56. FATON_TEMPLATE.TextSize = 14.000
  57. FATON_TEMPLATE.TextWrapped = true
  58.  
  59. FATON_TEXT.Name = "FATON_TEXT"
  60. FATON_TEXT.Parent = MAIN_FORM
  61. FATON_TEXT.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  62. FATON_TEXT.BackgroundTransparency = 1.000
  63. FATON_TEXT.Position = UDim2.new(0, 0, 0.338709682, 0)
  64. FATON_TEXT.Size = UDim2.new(1, 0, 0.244942948, 0)
  65. FATON_TEXT.Font = Enum.Font.SourceSans
  66. FATON_TEXT.Text = "Exploit Loaded!"
  67. FATON_TEXT.TextColor3 = Color3.fromRGB(200, 200, 200)
  68. FATON_TEXT.TextScaled = true
  69. FATON_TEXT.TextSize = 14.000
  70. FATON_TEXT.TextWrapped = true
  71.  
  72. FATON_TEXT2.Name = "FATON_TEXT2"
  73. FATON_TEXT2.Parent = MAIN_FORM
  74. FATON_TEXT2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  75. FATON_TEXT2.BackgroundTransparency = 1.000
  76. FATON_TEXT2.Position = UDim2.new(0, 0, 0.639999986, 0)
  77. FATON_TEXT2.Size = UDim2.new(1, 0, 0.244942948, 0)
  78. FATON_TEXT2.Font = Enum.Font.SourceSans
  79. FATON_TEXT2.Text = "By NezyGhoul#8130"
  80. FATON_TEXT2.TextColor3 = Color3.fromRGB(200, 200, 200)
  81. FATON_TEXT2.TextScaled = true
  82. FATON_TEXT2.TextSize = 14.000
  83. FATON_TEXT2.TextWrapped = true
  84.  
  85.  
  86. local function FVYUTL_fake_script()
  87.     local script = Instance.new('LocalScript', MAIN_FORM)
  88.  
  89.     wait(2)
  90.     script.Parent:TweenPosition(UDim2.new(0.823, 0,0.855, 0), "Out", "Sine", 2)
  91.     wait(4)
  92.     script.Parent:TweenPosition(UDim2.new(-0.823, 0,0.855, 0), "Out", "Sine", 1)
  93.     wait(2)
  94.     script.Parent.Parent:Destroy()
  95. end
  96. coroutine.wrap(FVYUTL_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement