Advertisement
Guest User

Untitled

a guest
Sep 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.15 KB | None | 0 0
  1. -- Instances:
  2. local SKYWARSGUI = Instance.new("ScreenGui")
  3. local SKYGUI = Instance.new("Frame")
  4. local CLOSEBUTTON = Instance.new("TextButton")
  5. local NUKE= Instance.new("TextButton")
  6. local CLICKTPTOOL = Instance.new("TextButton")
  7. local MEGAVIPROOM = Instance.new("TextButton")
  8. local VIPROOM = Instance.new("TextButton")
  9. local LOBBY = Instance.new("TextButton")
  10. local SKYWARS = Instance.new("TextLabel")
  11. local ABOUTGUI = Instance.new("TextButton")
  12. local INFOGUI = Instance.new("Frame")
  13. local ABOUTSKYWARSGUI = Instance.new("TextLabel")
  14. local NAZOREKINFO = Instance.new("TextLabel")
  15. local YUKARIINFO = Instance.new("TextLabel")
  16. local V3RMINFO = Instance.new("TextLabel")
  17. local GOBACKBUTTON = Instance.new("TextButton")
  18. local OPENGUI = Instance.new("Frame")
  19. local OPENBUTTON = Instance.new("TextButton")
  20. --Properties:
  21. SKYWARSGUI.Name = "SKYWARS GUI"
  22. SKYWARSGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  23. SKYWARSGUI.ResetOnSpawn = false
  24.  
  25. SKYGUI.Name = "SKYGUI"
  26. SKYGUI.Parent = SKYWARSGUI
  27. SKYGUI.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  28. SKYGUI.BackgroundTransparency = 0.15000000596046
  29. SKYGUI.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  30. SKYGUI.BorderSizePixel = 0
  31. SKYGUI.Position = UDim2.new(0.69747901, 0, 0.539525688, 0)
  32. SKYGUI.Size = UDim2.new(0, 216, 0, 233)
  33. SKYGUI.Active = true
  34. SKYGUI.Draggable = true
  35.  
  36. CLOSEBUTTON.Name = "CLOSEBUTTON"
  37. CLOSEBUTTON.Parent = SKYGUI
  38. CLOSEBUTTON.BackgroundColor3 = Color3.new(1, 1, 1)
  39. CLOSEBUTTON.BackgroundTransparency = 3453
  40. CLOSEBUTTON.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  41. CLOSEBUTTON.BorderSizePixel = 0
  42. CLOSEBUTTON.Position = UDim2.new(0.907407403, 0, 0, 0)
  43. CLOSEBUTTON.Size = UDim2.new(0, 20, 0, 23)
  44. CLOSEBUTTON.Font = Enum.Font.SourceSans
  45. CLOSEBUTTON.Text = "X"
  46. CLOSEBUTTON.TextColor3 = Color3.new(1, 1, 1)
  47. CLOSEBUTTON.TextScaled = true
  48. CLOSEBUTTON.TextSize = 100
  49. CLOSEBUTTON.TextWrapped = true
  50. CLOSEBUTTON.MouseButton1Click:connect(function()
  51. SKYGUI.Visible = false
  52. OPENGUI.Visible = true
  53. end)
  54.  
  55. REVIZADMIN.Name = "NUKE"
  56. REVIZADMIN.Parent = SKYGUI
  57. REVIZADMIN.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  58. REVIZADMIN.BorderColor3 = Color3.new(0, 0, 0)
  59. REVIZADMIN.Position = UDim2.new(0.115740739, 0, 0.184549361, 0)
  60. REVIZADMIN.Size = UDim2.new(0, 78, 0, 49)
  61. REVIZADMIN.Font = Enum.Font.SourceSans
  62. REVIZADMIN.Text = "NUKE"
  63. REVIZADMIN.TextColor3 = Color3.new(0, 0, 0)
  64. REVIZADMIN.TextSize = 13
  65. REVIZADMIN.TextWrapped = true
  66. REVIZADMIN.MouseButton1Click:connect(function()
  67. local CURRENTMAP = ""
  68.  
  69. local getmap = workspace:GetChildren()
  70. for i = 1, #getmap do
  71. if(getmap[i].Name == "SummerMap") then
  72. CURRENTMAP = "SummerMap"
  73. warn("Summer Map Selected")
  74. elseif(getmap[i].Name == "WinterMap") then
  75. CURRENTMAP = "WinterMap"
  76. warn("Winter Map Selected")
  77. elseif(getmap[i].Name == "SpringMap") then
  78. CURRENTMAP = "SpringMap"
  79. warn("Spring Map Selected")
  80. elseif(getmap[i].Name == "FallMap") then
  81. CURRENTMAP = "FallMap"
  82. warn("Fall Map Selected")
  83. else warn("No Map Found.")
  84. end
  85. end
  86.  
  87. local blocks = game.Workspace[CURRENTMAP].Map:GetChildren()
  88. for i=1,10 do
  89. for i=1, #blocks do
  90. game.Players.LocalPlayer.Backpack.Axe.RemoteEvent:FireServer(blocks[i])
  91. end
  92. end
  93.  
  94. local blocks = game.Workspace[CURRENTMAP].Map.Ores:GetChildren()
  95. for i=1,20 do
  96. for i=1, #blocks do
  97. game.Players.LocalPlayer.Backpack.Axe.RemoteEvent:FireServer(blocks[i])
  98. end
  99. end
  100. end)
  101.  
  102. CLICKTPTOOL.Name = "CLICKTPTOOL"
  103. CLICKTPTOOL.Parent = SKYGUI
  104. CLICKTPTOOL.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  105. CLICKTPTOOL.BorderColor3 = Color3.new(0, 0, 0)
  106. CLICKTPTOOL.Position = UDim2.new(0.518518507, 0, 0.184549361, 0)
  107. CLICKTPTOOL.Size = UDim2.new(0, 78, 0, 49)
  108. CLICKTPTOOL.Font = Enum.Font.SourceSans
  109. CLICKTPTOOL.Text = "CLICK TP TOOL"
  110. CLICKTPTOOL.TextColor3 = Color3.new(0, 0, 0)
  111. CLICKTPTOOL.TextSize = 13
  112. CLICKTPTOOL.TextWrapped = true
  113. CLICKTPTOOL.MouseButton1Click:connect(function()
  114. mouse = game.Players.LocalPlayer:GetMouse()
  115. tool = Instance.new("Tool")
  116. tool.RequiresHandle = false
  117. tool.Name = "Click Teleport"
  118. tool.Activated:connect(function()
  119. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  120. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  121. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  122. end)
  123. tool.Parent = game.Players.LocalPlayer.Backpack
  124. end)
  125.  
  126. MEGAVIPROOM.Name = "MEGAVIPROOM"
  127. MEGAVIPROOM.Parent = SKYGUI
  128. MEGAVIPROOM.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  129. MEGAVIPROOM.BorderColor3 = Color3.new(0, 0, 0)
  130. MEGAVIPROOM.Position = UDim2.new(0.115740739, 0, 0.433476388, 0)
  131. MEGAVIPROOM.Size = UDim2.new(0, 78, 0, 49)
  132. MEGAVIPROOM.Font = Enum.Font.SourceSans
  133. MEGAVIPROOM.Text = "MEGA VIP ROOM"
  134. MEGAVIPROOM.TextColor3 = Color3.new(0, 0, 0)
  135. MEGAVIPROOM.TextSize = 13
  136. MEGAVIPROOM.TextWrapped = true
  137. MEGAVIPROOM.MouseButton1Click:connect(function()
  138. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1.06104672, 264, 72.2138901)
  139. end)
  140.  
  141. VIPROOM.Name = "VIPROOM"
  142. VIPROOM.Parent = SKYGUI
  143. VIPROOM.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  144. VIPROOM.BorderColor3 = Color3.new(0, 0, 0)
  145. VIPROOM.Position = UDim2.new(0.518518507, 0, 0.433476388, 0)
  146. VIPROOM.Size = UDim2.new(0, 78, 0, 49)
  147. VIPROOM.Font = Enum.Font.SourceSans
  148. VIPROOM.Text = "VIP ROOM"
  149. VIPROOM.TextColor3 = Color3.new(0, 0, 0)
  150. VIPROOM.TextSize = 13
  151. VIPROOM.TextWrapped = true
  152. VIPROOM.MouseButton1Down:connect(function()
  153. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0.324219227, 264, -69.9828949)
  154. end)
  155.  
  156. LOBBY.Name = "LOBBY"
  157. LOBBY.Parent = SKYGUI
  158. LOBBY.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  159. LOBBY.BorderColor3 = Color3.new(0, 0, 0)
  160. LOBBY.Position = UDim2.new(0.115740739, 0, 0.682403445, 0)
  161. LOBBY.Size = UDim2.new(0, 165, 0, 49)
  162. LOBBY.Font = Enum.Font.SourceSans
  163. LOBBY.Text = "LOBBY"
  164. LOBBY.TextColor3 = Color3.new(0, 0, 0)
  165. LOBBY.TextSize = 13
  166. LOBBY.TextWrapped = true
  167. LOBBY.MouseButton1Down:connect(function()
  168. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-0.0351245105, 264, 22.2895088)
  169. end)
  170.  
  171. SKYWARS.Name = "SKYWARS"
  172. SKYWARS.Parent = SKYGUI
  173. SKYWARS.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  174. SKYWARS.BackgroundTransparency = 666
  175. SKYWARS.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  176. SKYWARS.BorderSizePixel = 0
  177. SKYWARS.Position = UDim2.new(0.115740739, 0, 0, 0)
  178. SKYWARS.Size = UDim2.new(0, 165, 0, 43)
  179. SKYWARS.Font = Enum.Font.SourceSans
  180. SKYWARS.Text = "SKYWARS GUI"
  181. SKYWARS.TextColor3 = Color3.new(1, 1, 1)
  182. SKYWARS.TextSize = 30
  183.  
  184. ABOUTGUI.Name = "ABOUTGUI"
  185. ABOUTGUI.Parent = SKYGUI
  186. ABOUTGUI.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  187. ABOUTGUI.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  188. ABOUTGUI.BorderSizePixel = 0
  189. ABOUTGUI.Position = UDim2.new(0.115740739, 0, 0.892703891, 0)
  190. ABOUTGUI.Size = UDim2.new(0, 165, 0, 25)
  191. ABOUTGUI.Font = Enum.Font.SourceSans
  192. ABOUTGUI.Text = "ABOUT GUI"
  193. ABOUTGUI.TextColor3 = Color3.new(1, 1, 1)
  194. ABOUTGUI.TextSize = 14
  195. ABOUTGUI.MouseButton1Click:connect(function()
  196. SKYGUI.Visible = false
  197. INFOGUI.Visible = true
  198. end)
  199.  
  200. INFOGUI.Name = "INFOGUI"
  201. INFOGUI.Parent = SKYWARSGUI
  202. INFOGUI.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  203. INFOGUI.BackgroundTransparency = 0.1499999910593
  204. INFOGUI.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  205. INFOGUI.Position = UDim2.new(0.743697464, 0, 0.590909064, 0)
  206. INFOGUI.Size = UDim2.new(0, 183, 0, 207)
  207. INFOGUI.Visible = false
  208. INFOGUI.Active = true
  209. INFOGUI.Draggable = true
  210.  
  211. ABOUTSKYWARSGUI.Name = "ABOUTSKYWARSGUI"
  212. ABOUTSKYWARSGUI.Parent = INFOGUI
  213. ABOUTSKYWARSGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  214. ABOUTSKYWARSGUI.BackgroundTransparency = 35
  215. ABOUTSKYWARSGUI.Position = UDim2.new(0.131147534, 0, 0, 0)
  216. ABOUTSKYWARSGUI.Size = UDim2.new(0, 135, 0, 37)
  217. ABOUTSKYWARSGUI.Font = Enum.Font.SourceSans
  218. ABOUTSKYWARSGUI.Text = "ABOUT SKYWARS GUI"
  219. ABOUTSKYWARSGUI.TextColor3 = Color3.new(1, 1, 1)
  220. ABOUTSKYWARSGUI.TextScaled = true
  221. ABOUTSKYWARSGUI.TextSize = 20
  222. ABOUTSKYWARSGUI.TextWrapped = true
  223.  
  224. NAZOREKINFO.Name = "NAZOREKINFO"
  225. NAZOREKINFO.Parent = INFOGUI
  226. NAZOREKINFO.BackgroundColor3 = Color3.new(1, 1, 1)
  227. NAZOREKINFO.BackgroundTransparency = 1313
  228. NAZOREKINFO.Position = UDim2.new(0.131147534, 0, 0.439613521, 0)
  229. NAZOREKINFO.Size = UDim2.new(0, 135, 0, 43)
  230. NAZOREKINFO.Font = Enum.Font.SciFi
  231. NAZOREKINFO.Text = "OTHER TWO SCRIPTS AND WHOLE GUI MADE BY NAZOREK"
  232. NAZOREKINFO.TextColor3 = Color3.new(1, 1, 1)
  233. NAZOREKINFO.TextScaled = true
  234. NAZOREKINFO.TextSize = 16
  235. NAZOREKINFO.TextWrapped = true
  236.  
  237. YUKARIINFO.Name = "YUKARIINFO"
  238. YUKARIINFO.Parent = INFOGUI
  239. YUKARIINFO.BackgroundColor3 = Color3.new(1, 1, 1)
  240. YUKARIINFO.BackgroundTransparency = 1313
  241. YUKARIINFO.Position = UDim2.new(0.131147534, 0, 0.178743988, 0)
  242. YUKARIINFO.Size = UDim2.new(0, 135, 0, 44)
  243. YUKARIINFO.Font = Enum.Font.SciFi
  244. YUKARIINFO.Text = "ROOM SCRIPTS MADE BY YukariYakumo1"
  245. YUKARIINFO.TextColor3 = Color3.new(1, 1, 1)
  246. YUKARIINFO.TextScaled = true
  247. YUKARIINFO.TextSize = 16
  248. YUKARIINFO.TextWrapped = true
  249.  
  250. V3RMINFO.Name = "V3RMINFO"
  251. V3RMINFO.Parent = INFOGUI
  252. V3RMINFO.BackgroundColor3 = Color3.new(1, 1, 1)
  253. V3RMINFO.BackgroundTransparency = 35
  254. V3RMINFO.Position = UDim2.new(0.131147534, 0, 0.705313981, 0)
  255. V3RMINFO.Size = UDim2.new(0, 135, 0, 16)
  256. V3RMINFO.Font = Enum.Font.SourceSans
  257. V3RMINFO.Text = "FIND US ON V3RMILLION"
  258. V3RMINFO.TextColor3 = Color3.new(1, 1, 1)
  259. V3RMINFO.TextScaled = true
  260. V3RMINFO.TextSize = 20
  261. V3RMINFO.TextWrapped = true
  262.  
  263. GOBACKBUTTON.Name = "GOBACKBUTTON"
  264. GOBACKBUTTON.Parent = INFOGUI
  265. GOBACKBUTTON.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  266. GOBACKBUTTON.BackgroundTransparency = -0.10000000149012
  267. GOBACKBUTTON.BorderColor3 = Color3.new(0, 0, 0)
  268. GOBACKBUTTON.BorderSizePixel = 0
  269. GOBACKBUTTON.Position = UDim2.new(0.131147534, 0, 0.850241542, 0)
  270. GOBACKBUTTON.Size = UDim2.new(0, 135, 0, 26)
  271. GOBACKBUTTON.Font = Enum.Font.ArialBold
  272. GOBACKBUTTON.Text = "GO BACK"
  273. GOBACKBUTTON.TextColor3 = Color3.new(1, 1, 1)
  274. GOBACKBUTTON.TextSize = 13
  275. GOBACKBUTTON.TextWrapped = true
  276. GOBACKBUTTON.MouseButton1Click:connect(function()
  277. INFOGUI.Visible = false
  278. SKYGUI.Visible = true
  279. end)
  280.  
  281. OPENGUI.Name = "OPENGUI"
  282. OPENGUI.Parent = SKYWARSGUI
  283. OPENGUI.Active = true
  284. OPENGUI.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  285. OPENGUI.BackgroundTransparency = 0.25
  286. OPENGUI.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  287. OPENGUI.BorderSizePixel = 0
  288. OPENGUI.Position = UDim2.new(0.908963561, 0, 0.48616603, 0)
  289. OPENGUI.Selectable = true
  290. OPENGUI.Size = UDim2.new(0, 65, 0, 27)
  291. OPENGUI.Visible = false
  292. OPENGUI.Draggable = true
  293. OPENGUI.Active = true
  294.  
  295. OPENBUTTON.Name = "OPENBUTTON"
  296. OPENBUTTON.Parent = OPENGUI
  297. OPENBUTTON.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  298. OPENBUTTON.BackgroundTransparency = 0.34999999403954
  299. OPENBUTTON.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  300. OPENBUTTON.BorderSizePixel = 0
  301. OPENBUTTON.Size = UDim2.new(0, 65, 0, 27)
  302. OPENBUTTON.Font = Enum.Font.ArialBold
  303. OPENBUTTON.Text = "OPEN"
  304. OPENBUTTON.TextColor3 = Color3.new(1, 1, 1)
  305. OPENBUTTON.TextSize = 14
  306. OPENBUTTON.MouseButton1Click:connect(function()
  307. OPENGUI.Visible = false
  308. SKYGUI.Visible = true
  309. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement