Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made By dupkoli
- -- Instances:
- local AS = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local execute = Instance.new("TextButton")
- local title = Instance.new("TextLabel")
- local clear = Instance.new("TextButton")
- local TextBox = Instance.new("TextBox")
- local TextLabel = Instance.new("TextLabel")
- --Properties:
- AS.Name = "A.S"
- AS.Parent = game.CoreGui
- main.Name = "main"
- main.Parent = AS
- main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- main.Position = UDim2.new(0.477189779, 0, 0.326043755, 0)
- main.Size = UDim2.new(0, 397, 0, 223)
- main.Active = true
- main.Draggable = true
- execute.Name = "execute"
- execute.Parent = main
- execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- execute.Position = UDim2.new(-0.000446915627, 0, 0.799022675, 0)
- execute.Size = UDim2.new(0, 112, 0, 44)
- execute.Font = Enum.Font.SciFi
- execute.Text = "Execute"
- execute.TextColor3 = Color3.fromRGB(0, 0, 0)
- execute.TextSize = 19.000
- execute.MouseButton1Down:connect(function()
- loadstring(TextBox.Text)
- end)
- title.Name = "title"
- title.Parent = main
- title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- title.Size = UDim2.new(0, 397, 0, 21)
- title.Font = Enum.Font.SciFi
- title.Text = "A.S"
- title.TextColor3 = Color3.fromRGB(0, 0, 0)
- title.TextSize = 19.000
- clear.Name = "clear"
- clear.Parent = main
- clear.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- clear.Position = UDim2.new(0.717437208, 0, 0.799022734, 0)
- clear.Size = UDim2.new(0, 111, 0, 44)
- clear.Font = Enum.Font.SciFi
- clear.Text = "Clear"
- clear.TextColor3 = Color3.fromRGB(0, 0, 0)
- clear.TextSize = 19.000
- clear.MouseButton1Down:connect(function()
- TextBox.Text = ""
- end)
- TextBox.Parent = main
- TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.Position = UDim2.new(0, 0, 0.0941704065, 0)
- TextBox.Size = UDim2.new(0, 396, 0, 157)
- TextBox.Font = Enum.Font.SourceSansBold
- TextBox.Text = ""
- TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextBox.TextSize = 19.000
- TextBox.TextWrapped = true
- TextBox.TextXAlignment = Enum.TextXAlignment.Left
- TextBox.TextYAlignment = Enum.TextYAlignment.Top
- TextLabel.Parent = main
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Position = UDim2.new(0.281668931, 0, 0.79820627, 0)
- TextLabel.Size = UDim2.new(0, 173, 0, 44)
- TextLabel.Font = Enum.Font.SciFi
- TextLabel.Text = "A.S"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextSize = 19.000
- -- Scripts:
- local function PAWYVS_fake_script() -- title.Script
- local script = Instance.new('Script', title)
- while wait() do
- local r = (math.sin(workspace.DistributedGameTime/2)/2)+0.5
- local g = (math.sin(workspace.DistributedGameTime)/2)+0.5
- local b = (math.sin(workspace.DistributedGameTime*1.5)/2)+0.5
- local color = Color3.new(r, g, b)
- script.Parent.BackgroundColor3 = color
- end
- end
- coroutine.wrap(PAWYVS_fake_script)()
- local function RSMKDKX_fake_script() -- main.Script
- local script = Instance.new('Script', main)
- while wait() do
- local r = (math.sin(workspace.DistributedGameTime/2)/2)+0.5
- local g = (math.sin(workspace.DistributedGameTime)/2)+0.5
- local b = (math.sin(workspace.DistributedGameTime*1.5)/2)+0.5
- local color = Color3.new(r, g, b)
- script.Parent.BackgroundColor3 = color
- end
- end
- coroutine.wrap(RSMKDKX_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement