Advertisement
Mil_Dev

Rainbow Ios X

Nov 17th, 2019
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local RainbowGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local closeperm = Instance.new("TextButton")
  9. local ImageLabel = Instance.new("ImageLabel")
  10. local TextLabel = Instance.new("TextLabel")
  11. local TextButton = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. RainbowGui.Name = "Rainbow Gui"
  16. RainbowGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. Frame.Parent = RainbowGui
  19. Frame.BackgroundColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  20. Frame.BorderSizePixel = 0
  21. Frame.Position = UDim2.new(0.248842582, 0, 0.180602014, 0)
  22. Frame.Size = UDim2.new(0, 419, 0, 397)
  23.  
  24. closeperm.Name = "close perm"
  25. closeperm.Parent = Frame
  26. closeperm.BackgroundColor3 = Color3.new(1, 1, 1)
  27. closeperm.BackgroundTransparency = 1
  28. closeperm.Position = UDim2.new(0.807990611, 0, -0.0205112211, 0)
  29. closeperm.Size = UDim2.new(0.289435595, 0, 0.166666672, 0)
  30. closeperm.Font = Enum.Font.SourceSansBold
  31. closeperm.Text = "X"
  32. closeperm.TextColor3 = Color3.new(1, 1, 1)
  33. closeperm.TextScaled = true
  34. closeperm.TextSize = 14
  35. closeperm.TextWrapped = true
  36.  
  37. ImageLabel.Parent = Frame
  38. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  39. ImageLabel.BackgroundTransparency = 1
  40. ImageLabel.BorderSizePixel = 0
  41. ImageLabel.Size = UDim2.new(0, 49, 0, 50)
  42. ImageLabel.Image = "rbxgameasset://Images/image0"
  43.  
  44. TextLabel.Parent = Frame
  45. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  46. TextLabel.BackgroundTransparency = 1
  47. TextLabel.BorderSizePixel = 0
  48. TextLabel.Position = UDim2.new(0.278457105, 0, 0, 0)
  49. TextLabel.Size = UDim2.new(0, 212, 0, 50)
  50. TextLabel.Font = Enum.Font.GothamSemibold
  51. TextLabel.Text = "Ios X Rainbow Gui"
  52. TextLabel.TextColor3 = Color3.new(0.333333, 1, 1)
  53. TextLabel.TextScaled = true
  54. TextLabel.TextSize = 14
  55. TextLabel.TextWrapped = true
  56. TextLabel.MouseButton1Down:connect(function()
  57. loadstring(game:HttpGet("https://pastebin.com/raw/C92YB6Bv", true))()
  58. end)
  59.  
  60. TextButton.Parent = Frame
  61. TextButton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  62. TextButton.BorderSizePixel = 0
  63. TextButton.Position = UDim2.new(0.0548925996, 0, 0.239294708, 0)
  64. TextButton.Size = UDim2.new(0, 101, 0, 30)
  65. TextButton.Font = Enum.Font.GothamSemibold
  66. TextButton.Text = "Ios X Hub"
  67. TextButton.TextColor3 = Color3.new(1, 1, 1)
  68. TextButton.TextSize = 14
  69.  
  70. -- Scripts:
  71.  
  72. local function HXRFFCP_fake_script() -- Frame.LocalScript
  73. local script = Instance.new('LocalScript', Frame)
  74.  
  75. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  76.  
  77. counter = 0
  78.  
  79. while wait(0.1)do
  80. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  81.  
  82. counter = counter + 0.01
  83. end
  84. end
  85. coroutine.wrap(HXRFFCP_fake_script)()
  86. local function GWLZ_fake_script() -- closeperm.LocalScript
  87. local script = Instance.new('LocalScript', closeperm)
  88.  
  89. script.Parent.MouseButton1Click:Connect(function()
  90. script.Parent.Parent.Visible = false
  91. end)
  92. end
  93. coroutine.wrap(GWLZ_fake_script)()
  94. local function KOIGE_fake_script() -- RainbowGui.Move Frame
  95. local script = Instance.new('LocalScript', RainbowGui)
  96.  
  97. frame = script.Parent.Frame
  98. frame.Draggable = true
  99. frame.Active = true
  100. frame.Selectable = true
  101. end
  102. coroutine.wrap(KOIGE_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement