thi2004

Dragon Keeper Gui

Sep 22nd, 2018
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.58 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Maingui = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local Teleports = Instance.new("TextButton")
  8. local Teleport = Instance.new("Frame")
  9. local OrbsTeleports = Instance.new("TextButton")
  10. local ChestsTeleports = Instance.new("TextButton")
  11. local EggsTeleports = Instance.new("TextButton")
  12. local Script1 = Instance.new("TextLabel")
  13. local Script2 = Instance.new("TextLabel")
  14. local GiveStats = Instance.new("TextButton")
  15. local GiveEggs = Instance.new("TextButton")
  16. local Eggs = Instance.new("Frame")
  17. local Legendary = Instance.new("TextButton")
  18. local Mysthical = Instance.new("TextButton")
  19. local Warning1 = Instance.new("TextLabel")
  20. local Warning2 = Instance.new("TextLabel")
  21. local Owner = Instance.new("TextLabel")
  22. local Closegui = Instance.new("Frame")
  23. local Close = Instance.new("TextButton")
  24. local Opengui = Instance.new("Frame")
  25. local Open = Instance.new("TextButton")
  26. --Properties:
  27. ScreenGui.Parent = game.CoreGui
  28.  
  29. Maingui.Name = "Maingui"
  30. Maingui.Parent = ScreenGui
  31. Maingui.BackgroundColor3 = Color3.new(1, 1, 1)
  32. Maingui.Position = UDim2.new(0.161684796, 0, 0.199203193, 0)
  33. Maingui.Size = UDim2.new(0, 389, 0, 324)
  34. Maingui.Visible = false
  35. Maingui.Style = Enum.FrameStyle.DropShadow
  36. Maingui.Active = true
  37. Maingui.Draggable = true
  38.  
  39. Title.Name = "Title"
  40. Title.Parent = Maingui
  41. Title.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  42. Title.Position = UDim2.new(0.00257069431, 0, -0.00617283955, 0)
  43. Title.Size = UDim2.new(0, 350, 0, 27)
  44. Title.Font = Enum.Font.SourceSans
  45. Title.Text = "Dragon Keeper Gui"
  46. Title.TextColor3 = Color3.new(1, 0, 0)
  47. Title.TextSize = 14
  48.  
  49. Teleports.Name = "Teleports"
  50. Teleports.Parent = Maingui
  51. Teleports.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  52. Teleports.Position = UDim2.new(0.246786624, 0, 0.141975313, 0)
  53. Teleports.Size = UDim2.new(0, 171, 0, 52)
  54. Teleports.Font = Enum.Font.SourceSans
  55. Teleports.Text = "Teleports"
  56. Teleports.TextColor3 = Color3.new(1, 0, 0)
  57. Teleports.TextSize = 14
  58. Teleports.MouseButton1Down:connect(function()
  59. Teleport.Visible = true
  60. end)
  61.  
  62. Teleport.Name = "Teleport"
  63. Teleport.Parent = Teleports
  64. Teleport.BackgroundColor3 = Color3.new(1, 1, 1)
  65. Teleport.Position = UDim2.new(1.67251456, 0, -1.01923084, 0)
  66. Teleport.Size = UDim2.new(0, 262, 0, 314)
  67. Teleport.Visible = false
  68. Teleport.Style = Enum.FrameStyle.DropShadow
  69. Teleport.Active = true
  70. Teleport.Draggable = true
  71.  
  72. OrbsTeleports.Name = "Orbs Teleports"
  73. OrbsTeleports.Parent = Teleport
  74. OrbsTeleports.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  75. OrbsTeleports.Position = UDim2.new(0.148144692, 0, 0.078182742, 0)
  76. OrbsTeleports.Size = UDim2.new(0, 171, 0, 52)
  77. OrbsTeleports.Font = Enum.Font.SourceSans
  78. OrbsTeleports.Text = "Orbs Teleport"
  79. OrbsTeleports.TextColor3 = Color3.new(1, 0, 0)
  80. OrbsTeleports.TextSize = 14
  81. OrbsTeleports.MouseButton1Down:connect(function()
  82. for i, v in pairs(workspace.Orbs:GetChildren())do
  83. if(v.PrimaryPart)then
  84. v.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  85. end
  86. end
  87. end)
  88.  
  89. ChestsTeleports.Name = "Chests Teleports"
  90. ChestsTeleports.Parent = Teleport
  91. ChestsTeleports.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  92. ChestsTeleports.Position = UDim2.new(0.151961491, 0, 0.377545804, 0)
  93. ChestsTeleports.Size = UDim2.new(0, 171, 0, 52)
  94. ChestsTeleports.Font = Enum.Font.SourceSans
  95. ChestsTeleports.Text = "Chests Teleport"
  96. ChestsTeleports.TextColor3 = Color3.new(1, 0, 0)
  97. ChestsTeleports.TextSize = 14
  98. ChestsTeleports.MouseButton1Down:connect(function()
  99. for i, v in pairs(workspace.Gathering.Gold['Spawn-V2']:GetChildren())do
  100. if(v:FindFirstChild('Small'))then
  101. print 'Found a small chest'
  102. v.Small.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  103. elseif(v:FindFirstChild('Medium'))then
  104. print 'Found a medium chest'
  105. v.Medium.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  106. elseif(v:FindFirstChild('Large'))then
  107. print 'Found a Large chest'
  108. v.Large.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  109. end
  110. wait(1)
  111. end
  112. end)
  113.  
  114. EggsTeleports.Name = "Eggs Teleports"
  115. EggsTeleports.Parent = Teleport
  116. EggsTeleports.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  117. EggsTeleports.Position = UDim2.new(0.148144692, 0, 0.667354763, 0)
  118. EggsTeleports.Size = UDim2.new(0, 171, 0, 52)
  119. EggsTeleports.Font = Enum.Font.SourceSans
  120. EggsTeleports.Text = "Eggs Teleport"
  121. EggsTeleports.TextColor3 = Color3.new(1, 0, 0)
  122. EggsTeleports.TextSize = 14
  123. EggsTeleports.MouseButton1Down:connect(function()
  124. for i, v in pairs(workspace.EggSpawnZones['Spawn-V2']:GetChildren())do
  125. if(v:FindFirstChild('DragonEgg'))then
  126. print 'Found an egg!'
  127. v.DragonEgg.DragonEgg.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  128. end
  129. end
  130. end)
  131.  
  132. Script1.Name = "Script1"
  133. Script1.Parent = Teleport
  134. Script1.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  135. Script1.Position = UDim2.new(-0.0152671747, 0, -0.022292994, 0)
  136. Script1.Size = UDim2.new(0, 253, 0, 27)
  137. Script1.Font = Enum.Font.SourceSans
  138. Script1.Text = "Scripts Belong to V3rmillion"
  139. Script1.TextColor3 = Color3.new(1, 0, 0)
  140. Script1.TextSize = 14
  141.  
  142. Script2.Name = "Script2"
  143. Script2.Parent = Teleport
  144. Script2.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  145. Script2.Position = UDim2.new(-0.0152671756, 0, 0.926751614, 0)
  146. Script2.Size = UDim2.new(0, 253, 0, 27)
  147. Script2.Font = Enum.Font.SourceSans
  148. Script2.Text = "Scripts Belong to V3rmillion"
  149. Script2.TextColor3 = Color3.new(1, 0, 0)
  150. Script2.TextSize = 14
  151.  
  152. GiveStats.Name = "Give Stats"
  153. GiveStats.Parent = Maingui
  154. GiveStats.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  155. GiveStats.Position = UDim2.new(0.244215935, 0, 0.367283911, 0)
  156. GiveStats.Size = UDim2.new(0, 171, 0, 50)
  157. GiveStats.Font = Enum.Font.SourceSans
  158. GiveStats.Text = "Give Stats"
  159. GiveStats.TextColor3 = Color3.new(1, 0, 0)
  160. GiveStats.TextSize = 14
  161. GiveStats.MouseButton1Down:connect(function()
  162. local Dragon = workspace.SpawnedDragons:FindFirstChild(tostring(game.Players.LocalPlayer.UserId))
  163. if(Dragon)then
  164. for Index, DragonObject in pairs(Dragon:GetChildren())do
  165. DragonObject.Values.Stats.Multipliers.Speed.Value = 3
  166. end
  167. end
  168. end)
  169.  
  170. GiveEggs.Name = "Give Eggs"
  171. GiveEggs.Parent = Maingui
  172. GiveEggs.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  173. GiveEggs.Position = UDim2.new(0.244215935, 0, 0.592592597, 0)
  174. GiveEggs.Size = UDim2.new(0, 171, 0, 52)
  175. GiveEggs.Font = Enum.Font.SourceSans
  176. GiveEggs.Text = "Give Eggs"
  177. GiveEggs.TextColor3 = Color3.new(1, 0, 0)
  178. GiveEggs.TextSize = 14
  179. GiveEggs.MouseButton1Down:connect(function()
  180. Eggs.Visible = true
  181. end)
  182.  
  183. Eggs.Name = "Eggs"
  184. Eggs.Parent = GiveEggs
  185. Eggs.BackgroundColor3 = Color3.new(1, 1, 1)
  186. Eggs.Position = UDim2.new(0.894736528, 0, -3.46153903, 0)
  187. Eggs.Size = UDim2.new(0, 262, 0, 314)
  188. Eggs.Visible = false
  189. Eggs.Style = Enum.FrameStyle.DropShadow
  190. Eggs.Active = true
  191. Eggs.Draggable = true
  192.  
  193. Legendary.Name = "Legendary"
  194. Legendary.Parent = Eggs
  195. Legendary.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  196. Legendary.Position = UDim2.new(0.14051111, 0, 0.173724145, 0)
  197. Legendary.Size = UDim2.new(0, 171, 0, 52)
  198. Legendary.Font = Enum.Font.SourceSans
  199. Legendary.Text = "Give Legendary"
  200. Legendary.TextColor3 = Color3.new(1, 0, 0)
  201. Legendary.TextSize = 14
  202. Legendary.MouseButton1Down:connect(function()
  203. while wait() do
  204. local remotes = "GiveTutorialEgg"
  205. local id = "25"
  206. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  207. Event:FireServer(remotes, id)
  208. end
  209. end)
  210.  
  211. Mysthical.Name = "Mysthical"
  212. Mysthical.Parent = Eggs
  213. Mysthical.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  214. Mysthical.Position = UDim2.new(0.14051111, 0, 0.56862855, 0)
  215. Mysthical.Size = UDim2.new(0, 171, 0, 52)
  216. Mysthical.Font = Enum.Font.SourceSans
  217. Mysthical.Text = "Give Mysthical"
  218. Mysthical.TextColor3 = Color3.new(1, 0, 0)
  219. Mysthical.TextSize = 14
  220. Mysthical.MouseButton1Down:connect(function()
  221. while wait() do
  222. local remotes = "GiveTutorialEgg"
  223. local id = "30"
  224. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  225. Event:FireServer(remotes, id)
  226. end
  227. end)
  228.  
  229. Warning1.Name = "Warning1"
  230. Warning1.Parent = Eggs
  231. Warning1.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  232. Warning1.Position = UDim2.new(-0.0152671747, 0, -0.0159235671, 0)
  233. Warning1.Size = UDim2.new(0, 253, 0, 27)
  234. Warning1.Font = Enum.Font.SourceSans
  235. Warning1.Text = "Warning ko the give legendary neu nhan mysthical"
  236. Warning1.TextColor3 = Color3.new(1, 0, 0)
  237. Warning1.TextSize = 14
  238.  
  239. Warning2.Name = "Warning2"
  240. Warning2.Parent = Eggs
  241. Warning2.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  242. Warning2.Position = UDim2.new(-0.0152671738, 0, 0.917197466, 0)
  243. Warning2.Size = UDim2.new(0, 253, 0, 27)
  244. Warning2.Font = Enum.Font.SourceSans
  245. Warning2.Text = "Warning ko the give mysthical neu nhan legendary"
  246. Warning2.TextColor3 = Color3.new(1, 0, 0)
  247. Warning2.TextSize = 14
  248.  
  249. Owner.Name = "Owner"
  250. Owner.Parent = Maingui
  251. Owner.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  252. Owner.Position = UDim2.new(-0.00771208247, 0, 0.907407403, 0)
  253. Owner.Size = UDim2.new(0, 379, 0, 27)
  254. Owner.Font = Enum.Font.SourceSans
  255. Owner.Text = "Make By ClarkShadow"
  256. Owner.TextColor3 = Color3.new(1, 0, 0)
  257. Owner.TextSize = 14
  258.  
  259. Closegui.Name = "Closegui"
  260. Closegui.Parent = Maingui
  261. Closegui.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  262. Closegui.Position = UDim2.new(0.940873981, 0, -0.0246913582, 0)
  263. Closegui.Size = UDim2.new(0, 30, 0, 33)
  264. Closegui.Style = Enum.FrameStyle.DropShadow
  265. Closegui.Active = true
  266. Closegui.Draggable = true
  267.  
  268. Close.Name = "Close"
  269. Close.Parent = Closegui
  270. Close.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  271. Close.Position = UDim2.new(-0.0333333015, 0, -0.0673401356, 0)
  272. Close.Size = UDim2.new(0, 14, 0, 22)
  273. Close.Font = Enum.Font.SourceSans
  274. Close.Text = "X"
  275. Close.TextColor3 = Color3.new(1, 0, 0)
  276. Close.TextSize = 14
  277. Close.MouseButton1Down:connect(function()
  278. Maingui.Visible = false
  279. Opengui.Visible = true
  280. end)
  281.  
  282. Opengui.Name = "Opengui"
  283. Opengui.Parent = ScreenGui
  284. Opengui.BackgroundColor3 = Color3.new(1, 1, 1)
  285. Opengui.Position = UDim2.new(-0.0108695645, 0, 0.430278897, 0)
  286. Opengui.Size = UDim2.new(0, 95, 0, 43)
  287. Opengui.Style = Enum.FrameStyle.DropShadow
  288. Opengui.Active = true
  289. Opengui.Draggable = true
  290.  
  291. Open.Name = "Open"
  292. Open.Parent = Opengui
  293. Open.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  294. Open.Position = UDim2.new(-0.00167464092, 0, 0.0854993165, 0)
  295. Open.Size = UDim2.new(0, 78, 0, 20)
  296. Open.Font = Enum.Font.SourceSans
  297. Open.Text = "Open"
  298. Open.TextColor3 = Color3.new(1, 0, 0)
  299. Open.TextSize = 14
  300. Open.MouseButton1Down:connect(function()
  301. Opengui.Visible = false
  302. Maingui.Visible = true
  303. end)
  304. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment