Advertisement
Guest User

Untitled

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