Advertisement
djghs

Untitled

Apr 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4. -- Objects
  5.  
  6. local SplashiGui = Instance.new("ScreenGui")
  7. local MainLogin = Instance.new("Frame")
  8. local SumbitLogin = Instance.new("TextButton")
  9. local UsernameBox = Instance.new("TextBox")
  10. local KeyBox = Instance.new("TextBox")
  11. local TextLabel = Instance.new("TextLabel")
  12. local TopBar = Instance.new("Frame")
  13. local MainFrame = Instance.new("Frame")
  14. local Topbar = Instance.new("Frame")
  15. local SplashiLogo = Instance.new("ImageLabel")
  16. local ScriptBox = Instance.new("ScrollingFrame")
  17. local ScriptHere = Instance.new("TextBox")
  18. local TextButton = Instance.new("TextButton")
  19. local TextButton_2 = Instance.new("TextButton")
  20.  
  21. -- Properties
  22.  
  23. SplashiGui.Name = "SplashiGui"
  24. SplashiGui.Parent = game.CoreGui
  25.  
  26. MainFrame.Name = "MainFrame"
  27. MainFrame.Parent = SplashiGui
  28. MainFrame.Active = true
  29. MainFrame.BackgroundColor3 = Color3.new(0.658824, 0.658824, 0.658824)
  30. MainFrame.BorderSizePixel = 0
  31. MainFrame.Position = UDim2.new(0.29428342, 0, 0.205078125, 0)
  32. MainFrame.Selectable = true
  33. MainFrame.Size = UDim2.new(0, 562, 0, 453)
  34. MainFrame.Visible = false
  35. MainFrame.Draggable = true
  36.  
  37. Topbar.Name = "Topbar"
  38. Topbar.Parent = MainFrame
  39. Topbar.Active = true
  40. Topbar.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  41. Topbar.BorderSizePixel = 0
  42. Topbar.Position = UDim2.new(0, 0, -0.0248881634, 0)
  43. Topbar.Selectable = true
  44. Topbar.Size = UDim2.new(0, 562, 0, 49)
  45.  
  46. SplashiLogo.Name = "SplashiLogo"
  47. SplashiLogo.Parent = MainFrame
  48. SplashiLogo.BackgroundColor3 = Color3.new(1, 1, 1)
  49. SplashiLogo.BackgroundTransparency = 1
  50. SplashiLogo.Position = UDim2.new(0.882715762, 0, -0.161147907, 0)
  51. SplashiLogo.Size = UDim2.new(0, 142, 0, 111)
  52. SplashiLogo.Image = "rbxassetid://1644616407"
  53.  
  54. ScriptBox.Name = "ScriptBox"
  55. ScriptBox.Parent = MainFrame
  56. ScriptBox.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  57. ScriptBox.BorderSizePixel = 0
  58. ScriptBox.Position = UDim2.new(0.0284697507, 0, 0.103752762, 0)
  59. ScriptBox.Size = UDim2.new(0, 530, 0, 297)
  60. ScriptBox.CanvasSize = UDim2.new(0, 0, 100000, 0)
  61.  
  62. ScriptHere.Name = "ScriptHere"
  63. ScriptHere.Parent = ScriptBox
  64. ScriptHere.BackgroundColor3 = Color3.new(1, 1, 1)
  65. ScriptHere.BackgroundTransparency = 1
  66. ScriptHere.BorderSizePixel = 0
  67. ScriptHere.Size = UDim2.new(0, 508, 0, 100000)
  68. ScriptHere.ClearTextOnFocus = false
  69. ScriptHere.Font = Enum.Font.SourceSans
  70. ScriptHere.MultiLine = true
  71. ScriptHere.Text = "print(\"Hello World!\")"
  72. ScriptHere.TextColor3 = Color3.new(1, 1, 1)
  73. ScriptHere.TextSize = 25
  74. ScriptHere.TextWrapped = true
  75. ScriptHere.TextXAlignment = Enum.TextXAlignment.Left
  76. ScriptHere.TextYAlignment = Enum.TextYAlignment.Top
  77.  
  78. TextButton.Parent = MainFrame
  79. TextButton.BackgroundColor3 = Color3.new(0.568627, 0.568627, 0.568627)
  80. TextButton.BorderSizePixel = 0
  81. TextButton.Position = UDim2.new(0.0980300605, 0, 0.793021917, 0)
  82. TextButton.Size = UDim2.new(0, 200, 0, 75)
  83. TextButton.Font = Enum.Font.SourceSans
  84. TextButton.Text = "EXECUTE"
  85. TextButton.TextColor3 = Color3.new(1, 1, 1)
  86. TextButton.TextSize = 34
  87. TextButton.MouseButton1Click:Connect(function()
  88. loadstring(ScriptHere.Text)()
  89. end)
  90.  
  91. TextButton_2.Parent = MainFrame
  92. TextButton_2.BackgroundColor3 = Color3.new(0.568627, 0.568627, 0.568627)
  93. TextButton_2.BorderSizePixel = 0
  94. TextButton_2.Position = UDim2.new(0.54625541, 0, 0.793021917, 0)
  95. TextButton_2.Size = UDim2.new(0, 200, 0, 75)
  96. TextButton_2.Font = Enum.Font.SourceSans
  97. TextButton_2.Text = "CLEAR"
  98. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  99. TextButton_2.TextSize = 34
  100. TextButton_2.MouseButton1Click:Connect(function()
  101. ScriptHere.Text = ""
  102. end)
  103.  
  104. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement