Advertisement
kolijake

Owner SS New

Aug 13th, 2020
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local title = Instance.new("TextLabel")
  9. local pelangi = Instance.new("Frame")
  10. local pelangi2 = Instance.new("Frame")
  11. local TextBox = Instance.new("TextBox")
  12. local Execute = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. main.Name = "main"
  20. main.Parent = ScreenGui
  21. main.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
  22. main.Position = UDim2.new(0.320341051, 0, 0.276341945, 0)
  23. main.Size = UDim2.new(0, 360, 0, 213)
  24. main.Active = true
  25. main.Draggable =true
  26.  
  27. title.Name = "title"
  28. title.Parent = main
  29. title.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  30. title.Size = UDim2.new(0, 360, 0, 25)
  31. title.Font = Enum.Font.SciFi
  32. title.Text = "Owner SS"
  33. title.TextColor3 = Color3.fromRGB(189, 91, 221)
  34. title.TextSize = 20.000
  35.  
  36. pelangi.Name = "pelangi"
  37. pelangi.Parent = main
  38. pelangi.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  39. pelangi.Size = UDim2.new(0, 135, 0, 25)
  40.  
  41. pelangi2.Name = "pelangi 2"
  42. pelangi2.Parent = main
  43. pelangi2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  44. pelangi2.Position = UDim2.new(0.627777755, 0, 0, 0)
  45. pelangi2.Size = UDim2.new(0, 134, 0, 25)
  46.  
  47. TextBox.Parent = main
  48. TextBox.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
  49. TextBox.BackgroundTransparency = 1.000
  50. TextBox.Position = UDim2.new(0, 0, 0.117370889, 0)
  51. TextBox.Size = UDim2.new(0, 360, 0, 121)
  52. TextBox.ClearTextOnFocus = false
  53. TextBox.Font = Enum.Font.SciFi
  54. TextBox.Text = ""
  55. TextBox.TextColor3 = Color3.fromRGB(189, 91, 221)
  56. TextBox.TextSize = 19.000
  57. TextBox.TextWrapped = true
  58. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  59. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  60.  
  61. Execute.Name = "Execute"
  62. Execute.Parent = main
  63. Execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  64. Execute.Position = UDim2.new(0.26111111, 0, 0.746478856, 0)
  65. Execute.Size = UDim2.new(0, 171, 0, 45)
  66. Execute.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  67. Execute.Font = Enum.Font.SciFi
  68. Execute.Text = "Execute"
  69. Execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  70. Execute.TextSize = 19.000
  71. Execute.MouseButton1Down:connect(function()
  72. loadstring(TextBox.Text)
  73. end)
  74.  
  75. -- Scripts:
  76.  
  77. local function FEKONL_fake_script() -- pelangi.Script
  78. local script = Instance.new('Script', pelangi)
  79.  
  80. while true do
  81. i = 0
  82. for n=1,0,-0.05 do
  83. i = i + 0.05
  84. script.Parent.BackgroundColor3 = Color3.new(i, 0, n)
  85. wait()
  86. end
  87. i = 0
  88. for n=1,0,-0.05 do
  89. i = i + 0.05
  90. script.Parent.BackgroundColor3 = Color3.new(n, i, 0)
  91. wait()
  92. end
  93. i = 0
  94. for n=1,0,-0.05 do
  95. i = i + 0.05
  96. script.Parent.BackgroundColor3 = Color3.new(0, n, i)
  97. wait()
  98. end
  99. end
  100. end
  101. coroutine.wrap(FEKONL_fake_script)()
  102. local function NYMW_fake_script() -- pelangi2.Script
  103. local script = Instance.new('Script', pelangi2)
  104.  
  105. while true do
  106. i = 0
  107. for n=1,0,-0.05 do
  108. i = i + 0.05
  109. script.Parent.BackgroundColor3 = Color3.new(i, 0, n)
  110. wait()
  111. end
  112. i = 0
  113. for n=1,0,-0.05 do
  114. i = i + 0.05
  115. script.Parent.BackgroundColor3 = Color3.new(n, i, 0)
  116. wait()
  117. end
  118. i = 0
  119. for n=1,0,-0.05 do
  120. i = i + 0.05
  121. script.Parent.BackgroundColor3 = Color3.new(0, n, i)
  122. wait()
  123. end
  124. end
  125. end
  126. coroutine.wrap(NYMW_fake_script)()
  127.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement