Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local pelangi = Instance.new("Frame")
- local pelangi2 = Instance.new("Frame")
- local TextBox = Instance.new("TextBox")
- local Execute = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
- main.Position = UDim2.new(0.320341051, 0, 0.276341945, 0)
- main.Size = UDim2.new(0, 360, 0, 213)
- main.Active = true
- main.Draggable =true
- title.Name = "title"
- title.Parent = main
- title.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
- title.Size = UDim2.new(0, 360, 0, 25)
- title.Font = Enum.Font.SciFi
- title.Text = "Owner SS"
- title.TextColor3 = Color3.fromRGB(189, 91, 221)
- title.TextSize = 20.000
- pelangi.Name = "pelangi"
- pelangi.Parent = main
- pelangi.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- pelangi.Size = UDim2.new(0, 135, 0, 25)
- pelangi2.Name = "pelangi 2"
- pelangi2.Parent = main
- pelangi2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- pelangi2.Position = UDim2.new(0.627777755, 0, 0, 0)
- pelangi2.Size = UDim2.new(0, 134, 0, 25)
- TextBox.Parent = main
- TextBox.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
- TextBox.BackgroundTransparency = 1.000
- TextBox.Position = UDim2.new(0, 0, 0.117370889, 0)
- TextBox.Size = UDim2.new(0, 360, 0, 121)
- TextBox.ClearTextOnFocus = false
- TextBox.Font = Enum.Font.SciFi
- TextBox.Text = ""
- TextBox.TextColor3 = Color3.fromRGB(189, 91, 221)
- TextBox.TextSize = 19.000
- TextBox.TextWrapped = true
- TextBox.TextXAlignment = Enum.TextXAlignment.Left
- TextBox.TextYAlignment = Enum.TextYAlignment.Top
- Execute.Name = "Execute"
- Execute.Parent = main
- Execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Execute.Position = UDim2.new(0.26111111, 0, 0.746478856, 0)
- Execute.Size = UDim2.new(0, 171, 0, 45)
- Execute.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
- 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)
- -- Scripts:
- local function FEKONL_fake_script() -- pelangi.Script
- local script = Instance.new('Script', pelangi)
- while true do
- i = 0
- for n=1,0,-0.05 do
- i = i + 0.05
- script.Parent.BackgroundColor3 = Color3.new(i, 0, n)
- wait()
- end
- i = 0
- for n=1,0,-0.05 do
- i = i + 0.05
- script.Parent.BackgroundColor3 = Color3.new(n, i, 0)
- wait()
- end
- i = 0
- for n=1,0,-0.05 do
- i = i + 0.05
- script.Parent.BackgroundColor3 = Color3.new(0, n, i)
- wait()
- end
- end
- end
- coroutine.wrap(FEKONL_fake_script)()
- local function NYMW_fake_script() -- pelangi2.Script
- local script = Instance.new('Script', pelangi2)
- while true do
- i = 0
- for n=1,0,-0.05 do
- i = i + 0.05
- script.Parent.BackgroundColor3 = Color3.new(i, 0, n)
- wait()
- end
- i = 0
- for n=1,0,-0.05 do
- i = i + 0.05
- script.Parent.BackgroundColor3 = Color3.new(n, i, 0)
- wait()
- end
- i = 0
- for n=1,0,-0.05 do
- i = i + 0.05
- script.Parent.BackgroundColor3 = Color3.new(0, n, i)
- wait()
- end
- end
- end
- coroutine.wrap(NYMW_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement