Advertisement
kolijake

A.S

Aug 13th, 2020 (edited)
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. -- Made By dupkoli
  2.  
  3. -- Instances:
  4.  
  5. local AS = Instance.new("ScreenGui")
  6. local main = Instance.new("Frame")
  7. local execute = Instance.new("TextButton")
  8. local title = Instance.new("TextLabel")
  9. local clear = Instance.new("TextButton")
  10. local TextBox = Instance.new("TextBox")
  11. local TextLabel = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. AS.Name = "A.S"
  16. AS.Parent = game.CoreGui
  17.  
  18. main.Name = "main"
  19. main.Parent = AS
  20. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  21. main.Position = UDim2.new(0.477189779, 0, 0.326043755, 0)
  22. main.Size = UDim2.new(0, 397, 0, 223)
  23. main.Active = true
  24. main.Draggable = true
  25.  
  26. execute.Name = "execute"
  27. execute.Parent = main
  28. execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. execute.Position = UDim2.new(-0.000446915627, 0, 0.799022675, 0)
  30. execute.Size = UDim2.new(0, 112, 0, 44)
  31. execute.Font = Enum.Font.SciFi
  32. execute.Text = "Execute"
  33. execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. execute.TextSize = 19.000
  35. execute.MouseButton1Down:connect(function()
  36. loadstring(TextBox.Text)
  37. end)
  38.  
  39. title.Name = "title"
  40. title.Parent = main
  41. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  42. title.Size = UDim2.new(0, 397, 0, 21)
  43. title.Font = Enum.Font.SciFi
  44. title.Text = "A.S"
  45. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  46. title.TextSize = 19.000
  47.  
  48. clear.Name = "clear"
  49. clear.Parent = main
  50. clear.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  51. clear.Position = UDim2.new(0.717437208, 0, 0.799022734, 0)
  52. clear.Size = UDim2.new(0, 111, 0, 44)
  53. clear.Font = Enum.Font.SciFi
  54. clear.Text = "Clear"
  55. clear.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. clear.TextSize = 19.000
  57. clear.MouseButton1Down:connect(function()
  58. TextBox.Text = ""
  59. end)
  60.  
  61. TextBox.Parent = main
  62. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  63. TextBox.Position = UDim2.new(0, 0, 0.0941704065, 0)
  64. TextBox.Size = UDim2.new(0, 396, 0, 157)
  65. TextBox.Font = Enum.Font.SourceSansBold
  66. TextBox.Text = ""
  67. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  68. TextBox.TextSize = 19.000
  69. TextBox.TextWrapped = true
  70. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  71. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  72.  
  73. TextLabel.Parent = main
  74. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  75. TextLabel.BackgroundTransparency = 1.000
  76. TextLabel.Position = UDim2.new(0.281668931, 0, 0.79820627, 0)
  77. TextLabel.Size = UDim2.new(0, 173, 0, 44)
  78. TextLabel.Font = Enum.Font.SciFi
  79. TextLabel.Text = "A.S"
  80. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  81. TextLabel.TextSize = 19.000
  82.  
  83. -- Scripts:
  84.  
  85. local function PAWYVS_fake_script() -- title.Script
  86. local script = Instance.new('Script', title)
  87.  
  88. while wait() do
  89. local r = (math.sin(workspace.DistributedGameTime/2)/2)+0.5
  90. local g = (math.sin(workspace.DistributedGameTime)/2)+0.5
  91. local b = (math.sin(workspace.DistributedGameTime*1.5)/2)+0.5
  92. local color = Color3.new(r, g, b)
  93. script.Parent.BackgroundColor3 = color
  94. end
  95.  
  96. end
  97. coroutine.wrap(PAWYVS_fake_script)()
  98. local function RSMKDKX_fake_script() -- main.Script
  99. local script = Instance.new('Script', main)
  100.  
  101. while wait() do
  102. local r = (math.sin(workspace.DistributedGameTime/2)/2)+0.5
  103. local g = (math.sin(workspace.DistributedGameTime)/2)+0.5
  104. local b = (math.sin(workspace.DistributedGameTime*1.5)/2)+0.5
  105. local color = Color3.new(r, g, b)
  106. script.Parent.BackgroundColor3 = color
  107. end
  108. end
  109. coroutine.wrap(RSMKDKX_fake_script)()
  110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement