SkieAdmin

Script [ Roblox got Talent ] GUI

Dec 24th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.24 KB | None | 0 0
  1. wait(1)
  2. ply = game:service("Players")
  3. me = ply.LocalPlayer
  4. gui = me:findFirstChild("PlayerGui")
  5.  
  6. sc = Instance.new("ScreenGui",gui)
  7. sc.Name = "MakeGuis"
  8. game:GetService("StarterGui").ResetPlayerGuiOnSpawn = false
  9.  
  10. fr = Instance.new("Frame",sc)
  11. fr.Size = UDim2.new(0, 120, 125, 1)
  12. fr.Position = UDim2.new(0,240,0.8,-100)
  13. fr.BackgroundColor3 = Color3.new(0.2, 0.2, 0.7)
  14.  
  15.  
  16. --[[
  17. OPEN AND CLOSE BUTTON
  18. --]]
  19. b1 = Instance.new("TextButton", fr)
  20. b1.Name = "b1"
  21. b1.Size = UDim2.new(1, 0, 0.00025, 0)
  22. b1.Position = UDim2.new(0, 0, 0, 0)
  23. b1.BackgroundColor3 = Color3.new(0, 0.5, 0.75)
  24. b1.BorderColor3 = Color3.new(0, 0, 0)
  25. b1.BackgroundTransparency = 0
  26. b1.Text ="Close"
  27. b1.MouseButton1Down:connect(function ()
  28. if b1.Text =="Open" then
  29. fr.Position = UDim2.new(0,240,0.8,-100)
  30. b1.Text ="Close"
  31. else
  32. fr.Position = UDim2.new(0,0,0.97,0)
  33. b1.Text ="Open"
  34. end
  35. end)
  36. --[[
  37. MAKE SERVER HOST BUTTON
  38. --]]
  39. b2 = Instance.new("TextButton", fr)
  40. b2.Name = "b2"
  41. b2.Size = UDim2.new(1, 0, 0.00025, 0)
  42. b2.Position = UDim2.new(0, 0, 0, 21)
  43. b2.BackgroundColor3 = Color3.new(0,0,0)
  44. b2.BorderColor3 = Color3.new(0, 0, 0)
  45. b2.BackgroundTransparency = 0
  46. b2.Text ="Become Server Host"
  47. b2.TextColor3 = Color3.new(1,1,1)
  48. b2.MouseButton1Down:connect(function ()
  49. game.ReplicatedStorage.RemoteStorage.Click:FireServer("TeamChange","Black")
  50. end)
  51. --[[
  52. MAKE HOST BUTTON
  53. --]]
  54. b3 = Instance.new("TextButton", fr)
  55. b3.Name = "b3"
  56. b3.Size = UDim2.new(1, 0, 0.00025, 0)
  57. b3.Position = UDim2.new(0, 0, 0, 41)
  58. b3.BackgroundColor3 = Color3.new(102,102,0)
  59. b3.BorderColor3 = Color3.new(0, 0, 0)
  60. b3.BackgroundTransparency = 0
  61. b3.Text ="Become Host"
  62. b3.MouseButton1Down:connect(function ()
  63. game.ReplicatedStorage.RemoteStorage.Click:FireServer("TeamChange","Cool yellow")
  64. end)
  65.  
  66. --[[
  67. MAKE JUDGE HOST BUTTON
  68. --]]
  69. b4 = Instance.new("TextButton", fr)
  70. b4.Name = "b4"
  71. b4.Size = UDim2.new(1, 0, 0.00025, 0)
  72. b4.Position = UDim2.new(0, 0, 0, 61)
  73. b4.BackgroundColor3 = Color3.new(153,0,0)
  74. b4.BorderColor3 = Color3.new(0, 0, 0)
  75. b4.BackgroundTransparency = 0
  76. b4.Text ="Become Judge"
  77. b4.MouseButton1Down:connect(function ()
  78. game.ReplicatedStorage.RemoteStorage.Click:FireServer("TeamChange","Bright red")
  79. end)
  80. --[[
  81. MAKE PERFORMER
  82. --]]
  83. b5 = Instance.new("TextButton", fr)
  84. b5.Name = "b5"
  85. b5.Size = UDim2.new(1, 0, 0.00025, 0)
  86. b5.Position = UDim2.new(0, 0, 0, 81)
  87. b5.BackgroundColor3 = Color3.new(128,0,128)
  88. b5.BorderColor3 = Color3.new(0, 0, 0)
  89. b5.BackgroundTransparency = 0
  90. b5.Text ="Become Performer"
  91. b5.MouseButton1Down:connect(function ()
  92. game.ReplicatedStorage.RemoteStorage.Click:FireServer("TeamChange","Royal purple")
  93. end)
  94. --[[
  95. Open winners door
  96. --]]
  97. b6 = Instance.new("TextButton", fr)
  98. b6.Name = "b6"
  99. b6.Size = UDim2.new(1, 0, 0.00025, 0)
  100. b6.Position = UDim2.new(0, 0, 0, 101)
  101. b6.BackgroundColor3 = Color3.new(0, 0.5, 0.75)
  102. b6.BorderColor3 = Color3.new(0, 0, 0)
  103. b6.BackgroundTransparency = 0
  104. b6.Text ="Open Winners Door"
  105. b6.MouseButton1Down:connect(function ()
  106. game.ReplicatedStorage.RemoteStorage.Click:FireServer("Door2")
  107. game.ReplicatedStorage.RemoteStorage.Click:FireServer("Door3")
  108. end)
  109. --[[
  110. Normal Stage
  111. --]]
  112. b8 = Instance.new("TextButton", fr)
  113. b8.Name = "b8"
  114. b8.Size = UDim2.new(1, 0, 0.00025, 0)
  115. b8.Position = UDim2.new(0, 0, 0, 121)
  116. b8.BackgroundColor3 = Color3.new(0, 0.5, 0.75)
  117. b8.BorderColor3 = Color3.new(0, 0, 0)
  118. b8.BackgroundTransparency = 0
  119. b8.Text ="Normal Stage"
  120. b8.MouseButton1Down:connect(function ()
  121. game.ReplicatedStorage.RemoteStorage.Click:FireServer("SpawnMap","Normal")
  122. end)
  123.  
  124. --[[
  125. Clear stage
  126. --]]
  127. b7 = Instance.new("TextButton", fr)
  128. b7.Name = "b7"
  129. b7.Size = UDim2.new(1, 0, 0.00025, 0)
  130. b7.Position = UDim2.new(0, 0, 0, 141)
  131. b7.BackgroundColor3 = Color3.new(0, 0.5, 0.75)
  132. b7.BorderColor3 = Color3.new(0, 0, 0)
  133. b7.BackgroundTransparency = 0
  134. b7.Text ="Clear Stage"
  135. b7.MouseButton1Down:connect(function ()
  136. game.ReplicatedStorage.RemoteStorage.Click:FireServer("SpawnMap","ClearStage")
  137. end)
  138. --[[
  139. Sword Stage
  140. --]]
  141. b9 = Instance.new("TextButton", fr)
  142. b9.Name = "b9"
  143. b9.Size = UDim2.new(1, 0, 0.00025, 0)
  144. b9.Position = UDim2.new(0, 0, 0, 161)
  145. b9.BackgroundColor3 = Color3.new(0, 0.5, 0.75)
  146. b9.BorderColor3 = Color3.new(0, 0, 0)
  147. b9.BackgroundTransparency = 0
  148. b9.Text ="Sword Stage"
  149. b9.MouseButton1Down:connect(function ()
  150. game.ReplicatedStorage.RemoteStorage.Click:FireServer("SpawnMap","SwordFight")
  151. end)
  152. --[[
  153. Pianos Stage
  154. --]]
  155. b11 = Instance.new("TextButton", fr)
  156. b11.Name = "b11"
  157. b11.Size = UDim2.new(1, 0, 0.00025, 0)
  158. b11.Position = UDim2.new(0, 0, 0, 181)
  159. b11.BackgroundColor3 = Color3.new(0, 0.5, 0.75)
  160. b11.BorderColor3 = Color3.new(0, 0, 0)
  161. b11.BackgroundTransparency = 0
  162. b11.Text ="Piano Stage"
  163. b11.MouseButton1Down:connect(function ()
  164. game.ReplicatedStorage.RemoteStorage.Click:FireServer("SpawnMap","Pianos")
  165. end)
  166. --[[
  167. Skateboard Stage
  168. --]]
  169. b12 = Instance.new("TextButton", fr)
  170. b12.Name = "b12"
  171. b12.Size = UDim2.new(1, 0, 0.00025, 0)
  172. b12.Position = UDim2.new(0, 0, 0, 201)
  173. b12.BackgroundColor3 = Color3.new(0, 0.5, 0.75)
  174. b12.BorderColor3 = Color3.new(0, 0, 0)
  175. b12.BackgroundTransparency = 0
  176. b12.Text ="Skateboard Stage"
  177. b12.MouseButton1Down:connect(function ()
  178. game.ReplicatedStorage.RemoteStorage.Click:FireServer("SpawnMap","Skateboarding")
  179. end)
  180. --[[
  181. Keep winners door open forever
  182. --]]
  183. b13 = Instance.new("TextButton", fr)
  184. b13.Name = "b13"
  185. b13.Size = UDim2.new(1, 0, 0.00025, 0)
  186. b13.Position = UDim2.new(0, 0, 0, 221)
  187. b13.BackgroundColor3 = Color3.new(0, 0.5, 0.75)
  188. b13.BorderColor3 = Color3.new(0, 0, 0)
  189. b13.BackgroundTransparency = 0
  190. b13.Text ="Win Door always open"
  191. b13.MouseButton1Down:connect(function ()
  192. while true do
  193. game.ReplicatedStorage.RemoteStorage.Click:FireServer("Door2")
  194. game.ReplicatedStorage.RemoteStorage.Click:FireServer("Door3")
  195. wait(3)
  196. end
  197. end)
  198. --[[
  199. Neutral Rank
  200. --]]
  201. b14 = Instance.new("TextButton", fr)
  202. b14.Name = "b14"
  203. b14.Size = UDim2.new(1, 0, 0.00025, 0)
  204. b14.Position = UDim2.new(0, 0, 0, 241)
  205. b14.BackgroundColor3 = Color3.new(0, 0.5, 0.75)
  206. b14.BorderColor3 = Color3.new(0, 0, 0)
  207. b14.BackgroundTransparency = 0
  208. b14.Text ="Neutral Rank"
  209. b14.MouseButton1Down:connect(function ()
  210. game.ReplicatedStorage.RemoteStorage.Click:FireServer("TeamChange","afafs")
  211. end)
  212. local hint = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  213. hint.Text = "Loaded RGT Commands by BrainJason(DLLExploits). Please read Console!(F9)"
  214. hint.Name = game.JobId
  215. wait(5)
  216. hint:Destroy()
  217.  
  218. print("Hello, and thanks for using RGT Commands by BrainJason/DllExploits")
  219. print("This will just explain commands that need explaining")
  220. print("Sorry for the shit GUI - I am not a pro GUI maker")
  221. print("------------------------------------------------")
  222. print("Become Server Host will set you to server host or game admin rank(you do not get commands")
  223. print("Become Host makes you Host(Warning: Sometimes this bugs and doesn't work. May require adequate rep")
  224. print("Become Judge makes you Judge(Warning: Sometimes this bugs and doesn't work. May require adequate rep")
  225. print("Become Performer makes you a Performer")
  226. print("Winners door always open will loop the door open script every 3 seconds. Unstoppable.")
  227. print("Neutral rank will set you to no-rank at all. WARNING! Requires a fly/noclip script running, as it sets you out of map a bit.")
Add Comment
Please, Sign In to add comment