Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Box = Instance.new("Frame")
  8. local _1 = Instance.new("Frame")
  9. local _2 = Instance.new("Frame")
  10. local TextLabel = Instance.new("TextLabel")
  11. local TextButton = Instance.new("TextButton")
  12. local TextButton_2 = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. Box.Name = "Box"
  20. Box.Parent = ScreenGui
  21. Box.BackgroundColor3 = Color3.new(1, 1, 1)
  22. Box.BorderSizePixel = 0
  23. Box.Position = UDim2.new(0.687667549, 0, 0.301350385, 0)
  24. Box.Size = UDim2.new(0, 272, 0, 381)
  25.  
  26. _1.Name = "1"
  27. _1.Parent = Box
  28. _1.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039)
  29. _1.BorderSizePixel = 0
  30. _1.Position = UDim2.new(0.0145568848, 0, -0.0160177443, 0)
  31. _1.Size = UDim2.new(0, 272, 0, 381)
  32.  
  33. _2.Name = "2"
  34. _2.Parent = Box
  35. _2.BackgroundColor3 = Color3.new(1, 1, 1)
  36. _2.BorderSizePixel = 0
  37. _2.Position = UDim2.new(0.0277104098, 0, 0.0126374643, 0)
  38. _2.Size = UDim2.new(0, 258, 0, 32)
  39.  
  40. TextLabel.Parent = Box
  41. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  42. TextLabel.BackgroundTransparency = 1
  43. TextLabel.Position = UDim2.new(0.246323526, 0, -0.0262467191, 0)
  44. TextLabel.Size = UDim2.new(0, 136, 0, 60)
  45. TextLabel.Font = Enum.Font.Code
  46. TextLabel.Text = "GUI ONLY!"
  47. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  48. TextLabel.TextSize = 25
  49.  
  50. TextButton.Parent = Box
  51. TextButton.BackgroundColor3 = Color3.new(0.0627451, 0.501961, 0.501961)
  52. TextButton.BorderSizePixel = 0
  53. TextButton.Position = UDim2.new(0.0277104098, 0, 0.14173229, 0)
  54. TextButton.Size = UDim2.new(0, 258, 0, 28)
  55. TextButton.Font = Enum.Font.Code
  56. TextButton.Text = "FLING ALL GUI"
  57. TextButton.TextColor3 = Color3.new(0, 0, 0)
  58. TextButton.TextSize = 20
  59.  
  60. TextButton_2.Parent = Box
  61. TextButton_2.BackgroundColor3 = Color3.new(0.0627451, 0.501961, 0.501961)
  62. TextButton_2.BorderSizePixel = 0
  63. TextButton_2.Position = UDim2.new(0.0280000009, 0, 0.25, 0)
  64. TextButton_2.Size = UDim2.new(0, 258, 0, 28)
  65. TextButton_2.Font = Enum.Font.Code
  66. TextButton_2.Text = "ANIMATIONS GUI"
  67. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  68. TextButton_2.TextSize = 20
  69.  
  70. -- Scripts:
  71.  
  72. local function QONQZT_fake_script() -- _2.Rainbow Frame
  73. local script = Instance.new('LocalScript', _2)
  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.  
  85. --Enjoy ;) dont change anything. I didnt script this so i dont know if you can change but its adviced not 2
  86. end
  87. coroutine.wrap(QONQZT_fake_script)()
  88. local function JHSZHVN_fake_script() -- TextLabel.Rainbowify Text
  89. local script = Instance.new('LocalScript', TextLabel)
  90.  
  91. local r = { --color of the rainbow
  92. Color3.fromRGB(255, 255, 255); --red
  93. Color3.fromRGB(255, 255, 255); --orange
  94. Color3.fromRGB(0, 0, 0); --yellow
  95. Color3.fromRGB(0, 0, 0)} --purple
  96. local info = TweenInfo.new(1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, 0, false, 0)
  97. script.Parent.TextColor3 = r[1] --change this to your desired property
  98. i = 1
  99. while true do
  100. local tween = game:GetService("TweenService"):Create(script.Parent, info, {
  101. TextColor3 = r[i]}) --change this to your desired property
  102. tween:Play()
  103. repeat wait() until tween.Completed
  104. wait(0.1)
  105. if i == #r then i = 1 else i = i + 1 end
  106. end
  107.  
  108. --/camper0008 was here ;)
  109. end
  110. coroutine.wrap(JHSZHVN_fake_script)()
  111. local function GZBV_fake_script() -- Box.Rainbow Frame
  112. local script = Instance.new('LocalScript', Box)
  113.  
  114. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  115.  
  116. counter = 0
  117.  
  118. while wait(0.1)do
  119. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  120.  
  121. counter = counter + 0.01
  122. end
  123.  
  124. --Enjoy ;) dont change anything. I didnt script this so i dont know if you can change but its adviced not 2
  125. end
  126. coroutine.wrap(GZBV_fake_script)()
  127. local function KPDZC_fake_script() -- TextButton.Button
  128. local script = Instance.new('LocalScript', TextButton)
  129.  
  130. function onButtonClicked()
  131.  
  132. loadstring(game:HttpGet("https://pastebin.com/raw/A3vTtbcr", true))()
  133. end
  134.  
  135. script.Parent.MouseButton1Click:connect(onButtonClicked)
  136. end
  137. coroutine.wrap(KPDZC_fake_script)()
  138. local function MTYQRU_fake_script() -- TextButton_2.Button
  139. local script = Instance.new('LocalScript', TextButton_2)
  140.  
  141. function onButtonClicked()
  142.  
  143. loadstring(game:HttpGet("https://pastebin.com/raw/0MLPL32f", true))()
  144. end
  145.  
  146. script.Parent.MouseButton1Click:connect(onButtonClicked)
  147. end
  148. coroutine.wrap(MTYQRU_fake_script)()
  149. local function CAKDSD_fake_script() -- ScreenGui.Draggable (Read)
  150. local script = Instance.new('LocalScript', ScreenGui)
  151.  
  152. frame = script.Parent.Box --Name of the frame you wanna move
  153. frame.Draggable = true
  154. frame.Active = true
  155. frame.Selectable = true
  156. --Place IN the gui NOT in the Frame , Other wise the script will break
  157. --Thanks to TheManInCity (On youtube) by comenting on the video
  158. --Thanks to me for uploading (lol)
  159.  
  160. --Ps we know that Draggable got removed but this script somehow works :D
  161. end
  162. coroutine.wrap(CAKDSD_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement