Advertisement
kolijake

Owner SS

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