Advertisement
blakoohD

Untitled

Sep 18th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.61 KB | None | 0 0
  1. --- made by hyperzilla
  2. --- dont forget to sub for more updates and guis
  3. local DinosaurSimulatorGui = Instance.new("ScreenGui")
  4. local MainGUI = Instance.new("Frame")
  5. local Albinoterrorv2 = Instance.new("TextButton")
  6. local SkinSelector = Instance.new("TextLabel")
  7. local HotheadMegavore = Instance.new("TextButton")
  8. local PitchBlackTerror = Instance.new("TextButton")
  9. local GlassMegavore = Instance.new("TextButton")
  10. local GalacticTerror = Instance.new("TextButton")
  11. local StarDestroyerMegavore = Instance.new("TextButton")
  12. local ClassicAlbinoTerror = Instance.new("TextButton")
  13. local ClassicMegavore = Instance.new("TextButton")
  14. local GalacticBarosaurus = Instance.new("TextButton")
  15. local Close = Instance.new("TextButton")
  16. local skinselectorv2 = Instance.new("TextButton")
  17. local OpenGUI = Instance.new("Frame")
  18. local Open = Instance.new("TextButton")
  19. --Properties:
  20. DinosaurSimulatorGui.Name = "Dinosaur Simulator Gui"
  21. DinosaurSimulatorGui.Parent = game.CoreGui
  22.  
  23. MainGUI.Active = true
  24. MainGUI.Draggable = true
  25.  
  26. MainGUI.Name = "MainGUI"
  27. MainGUI.Parent = DinosaurSimulatorGui
  28. MainGUI.BackgroundColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  29. MainGUI.Position = UDim2.new(0.0353383347, 0, 0.0897637755, 0)
  30. MainGUI.Size = UDim2.new(0, 350, 0, 521)
  31. MainGUI.Visible = false
  32.  
  33. Albinoterrorv2.Name = "Albinoterrorv2"
  34. Albinoterrorv2.Parent = MainGUI
  35. Albinoterrorv2.BackgroundColor3 = Color3.new(1, 1, 1)
  36. Albinoterrorv2.Position = UDim2.new(0.0485714301, 0, 0.191938579, 0)
  37. Albinoterrorv2.Size = UDim2.new(0, 127, 0, 46)
  38. Albinoterrorv2.Font = Enum.Font.SourceSans
  39. Albinoterrorv2.Text = "Albino Terror V2"
  40. Albinoterrorv2.TextColor3 = Color3.new(0, 0, 0)
  41. Albinoterrorv2.TextSize = 20
  42. Albinoterrorv2.MouseButton1Click:connect(function()
  43. local a = "Albino Terror V2"
  44. local targ = "Albino Terror V2"
  45. workspace.GameEvents.ChangeDinosaur:FireServer(a)
  46. wait(1)
  47. workspace.GameEvents.StartPlayer:FireServer()
  48. Workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  49. wait(.1)
  50. workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  51. end)
  52.  
  53. SkinSelector.Name = "Skin Selector"
  54. SkinSelector.Parent = MainGUI
  55. SkinSelector.BackgroundColor3 = Color3.new(1, 1, 1)
  56. SkinSelector.Position = UDim2.new(0.0485714301, 0, 0.0460652597, 0)
  57. SkinSelector.Size = UDim2.new(0, 315, 0, 50)
  58. SkinSelector.Font = Enum.Font.SourceSans
  59. SkinSelector.Text = "Skin Selector V3"
  60. SkinSelector.TextColor3 = Color3.new(0, 0, 0)
  61. SkinSelector.TextSize = 40
  62.  
  63. HotheadMegavore.Name = "Hothead Megavore"
  64. HotheadMegavore.Parent = MainGUI
  65. HotheadMegavore.BackgroundColor3 = Color3.new(1, 1, 1)
  66. HotheadMegavore.Position = UDim2.new(0.577142894, 0, 0.191938579, 0)
  67. HotheadMegavore.Size = UDim2.new(0, 130, 0, 46)
  68. HotheadMegavore.Font = Enum.Font.SourceSans
  69. HotheadMegavore.Text = "Hothead Megavore"
  70. HotheadMegavore.TextColor3 = Color3.new(0, 0, 0)
  71. HotheadMegavore.TextSize = 18
  72. HotheadMegavore.MouseButton1Click:connect(function()
  73. local a = "Hothead Megavore"
  74. local targ = "Hothead Megavore"
  75. workspace.GameEvents.ChangeDinosaur:FireServer(a)
  76. wait(1)
  77. workspace.GameEvents.StartPlayer:FireServer()
  78. Workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  79. wait(.1)
  80. workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  81. end)
  82.  
  83. PitchBlackTerror.Name = "Pitch Black Terror"
  84. PitchBlackTerror.Parent = MainGUI
  85. PitchBlackTerror.BackgroundColor3 = Color3.new(1, 1, 1)
  86. PitchBlackTerror.Position = UDim2.new(0.0457143299, 0, 0.33397314, 0)
  87. PitchBlackTerror.Size = UDim2.new(0, 127, 0, 46)
  88. PitchBlackTerror.Font = Enum.Font.SourceSans
  89. PitchBlackTerror.Text = "Pitch Black Terror"
  90. PitchBlackTerror.TextColor3 = Color3.new(0, 0, 0)
  91. PitchBlackTerror.TextSize = 18
  92. PitchBlackTerror.MouseButton1Click:connect(function()
  93. local a = "Pitch Black Terror"
  94. local targ = "Pitch Black Terror"
  95. workspace.GameEvents.ChangeDinosaur:FireServer(a)
  96. wait(1)
  97. workspace.GameEvents.StartPlayer:FireServer()
  98. Workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  99. wait(.1)
  100. workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  101. end)
  102.  
  103. GlassMegavore.Name = "Glass Megavore"
  104. GlassMegavore.Parent = MainGUI
  105. GlassMegavore.BackgroundColor3 = Color3.new(1, 1, 1)
  106. GlassMegavore.Position = UDim2.new(0.577142894, 0, 0.33397314, 0)
  107. GlassMegavore.Size = UDim2.new(0, 130, 0, 46)
  108. GlassMegavore.Font = Enum.Font.SourceSans
  109. GlassMegavore.Text = "Glass Megavore"
  110. GlassMegavore.TextColor3 = Color3.new(0, 0, 0)
  111. GlassMegavore.TextSize = 21
  112. GlassMegavore.MouseButton1Click:connect(function()
  113. local a = "Glass Megavore"
  114. local targ = "Glass Megavore"
  115. workspace.GameEvents.ChangeDinosaur:FireServer(a)
  116. wait(1)
  117. workspace.GameEvents.StartPlayer:FireServer()
  118. Workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  119. wait(.1)
  120. workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  121. end)
  122.  
  123. GalacticTerror.Name = "Galactic Terror"
  124. GalacticTerror.Parent = MainGUI
  125. GalacticTerror.BackgroundColor3 = Color3.new(1, 1, 1)
  126. GalacticTerror.Position = UDim2.new(0.0457143299, 0, 0.481765866, 0)
  127. GalacticTerror.Size = UDim2.new(0, 127, 0, 46)
  128. GalacticTerror.Font = Enum.Font.SourceSans
  129. GalacticTerror.Text = "Galactic Terror"
  130. GalacticTerror.TextColor3 = Color3.new(0, 0, 0)
  131. GalacticTerror.TextSize = 22
  132. GalacticTerror.MouseButton1Click:connect(function()
  133. local a = "Galactic Terror"
  134. local targ = "Galactic Terror"
  135. workspace.GameEvents.ChangeDinosaur:FireServer(a)
  136. wait(1)
  137. workspace.GameEvents.StartPlayer:FireServer()
  138. Workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  139. wait(.1)
  140. workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  141. end)
  142.  
  143. StarDestroyerMegavore.Name = "Star Destroyer Megavore"
  144. StarDestroyerMegavore.Parent = MainGUI
  145. StarDestroyerMegavore.BackgroundColor3 = Color3.new(1, 1, 1)
  146. StarDestroyerMegavore.Position = UDim2.new(0.577142835, 0, 0.481765836, 0)
  147. StarDestroyerMegavore.Size = UDim2.new(0, 130, 0, 46)
  148. StarDestroyerMegavore.Font = Enum.Font.SourceSans
  149. StarDestroyerMegavore.Text = "Star Destroyer Megavore"
  150. StarDestroyerMegavore.TextColor3 = Color3.new(0, 0, 0)
  151. StarDestroyerMegavore.TextSize = 14
  152. StarDestroyerMegavore.MouseButton1Click:connect(function()
  153. local a = "Star Destroyer Megavore"
  154. local targ = "Star Destroyer Megavore"
  155. workspace.GameEvents.ChangeDinosaur:FireServer(a)
  156. wait(1)
  157. workspace.GameEvents.StartPlayer:FireServer()
  158. Workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  159. wait(.1)
  160. workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  161. end)
  162.  
  163. ClassicAlbinoTerror.Name = "Classic Albino Terror"
  164. ClassicAlbinoTerror.Parent = MainGUI
  165. ClassicAlbinoTerror.BackgroundColor3 = Color3.new(1, 1, 1)
  166. ClassicAlbinoTerror.Position = UDim2.new(0.0457143299, 0, 0.623800397, 0)
  167. ClassicAlbinoTerror.Size = UDim2.new(0, 127, 0, 46)
  168. ClassicAlbinoTerror.Font = Enum.Font.SourceSans
  169. ClassicAlbinoTerror.Text = "Classic Terror"
  170. ClassicAlbinoTerror.TextColor3 = Color3.new(0, 0, 0)
  171. ClassicAlbinoTerror.TextSize = 22
  172. ClassicAlbinoTerror.MouseButton1Click:connect(function()
  173. local a = "Classic Albino Terror"
  174. local targ = "Classic Albino Terror"
  175. workspace.GameEvents.ChangeDinosaur:FireServer(a)
  176. wait(1)
  177. workspace.GameEvents.StartPlayer:FireServer()
  178. Workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  179. wait(.1)
  180. workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  181. end)
  182.  
  183. ClassicMegavore.Name = "Classic Megavore"
  184. ClassicMegavore.Parent = MainGUI
  185. ClassicMegavore.BackgroundColor3 = Color3.new(1, 1, 1)
  186. ClassicMegavore.Position = UDim2.new(0.577142835, 0, 0.623800397, 0)
  187. ClassicMegavore.Size = UDim2.new(0, 130, 0, 46)
  188. ClassicMegavore.Font = Enum.Font.SourceSans
  189. ClassicMegavore.Text = "Classic Megavore"
  190. ClassicMegavore.TextColor3 = Color3.new(0, 0, 0)
  191. ClassicMegavore.TextSize = 20
  192. ClassicMegavore.MouseButton1Click:connect(function()
  193. local a = "Classic Megavore"
  194. local targ = "Classic Megavore"
  195. workspace.GameEvents.ChangeDinosaur:FireServer(a)
  196. wait(1)
  197. workspace.GameEvents.StartPlayer:FireServer()
  198. Workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  199. wait(.1)
  200. workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  201. end)
  202.  
  203. GalacticBarosaurus.Name = "Galactic Barosaurus"
  204. GalacticBarosaurus.Parent = MainGUI
  205. GalacticBarosaurus.BackgroundColor3 = Color3.new(1, 1, 1)
  206. GalacticBarosaurus.Position = UDim2.new(0.0485714301, 0, 0.763915539, 0)
  207. GalacticBarosaurus.Size = UDim2.new(0, 315, 0, 86)
  208. GalacticBarosaurus.Font = Enum.Font.SourceSans
  209. GalacticBarosaurus.Text = "Galactic Barosaurus"
  210. GalacticBarosaurus.TextColor3 = Color3.new(0, 0, 0)
  211. GalacticBarosaurus.TextSize = 40
  212. GalacticBarosaurus.MouseButton1Click:connect(function()
  213. local a = "Galactic Barosaurus"
  214. local targ = "Galactic Barosaurus"
  215. workspace.GameEvents.ChangeDinosaur:FireServer(a)
  216. wait(1)
  217. workspace.GameEvents.StartPlayer:FireServer()
  218. Workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  219. wait(.1)
  220. workspace.GameEvents.ChangeDinosaur:FireServer(targ)
  221. end)
  222.  
  223. Close.Name = "Close"
  224. Close.Parent = MainGUI
  225. Close.BackgroundColor3 = Color3.new(0.352941, 0.352941, 0.352941)
  226. Close.Position = UDim2.new(0, 0, -0.0460652746, 0)
  227. Close.Size = UDim2.new(0, 350, 0, 24)
  228. Close.Font = Enum.Font.SourceSans
  229. Close.Text = "Close the Gui"
  230. Close.TextColor3 = Color3.new(0, 0, 0)
  231. Close.TextSize = 30
  232. Close.MouseButton1Click:connect(function()
  233. MainGUI.Visible = false
  234. OpenGUI.Visible = true
  235. end)
  236.  
  237. skinselectorv2.Name = "skinselectorv2"
  238. skinselectorv2.Parent = MainGUI
  239. skinselectorv2.BackgroundColor3 = Color3.new(1, 1, 1)
  240. skinselectorv2.Position = UDim2.new(0, 0, 0.969289839, 0)
  241. skinselectorv2.Size = UDim2.new(0, 350, 0, 50)
  242. skinselectorv2.Font = Enum.Font.Fantasy
  243. skinselectorv2.Text = "Or use this version with any skin"
  244. skinselectorv2.TextColor3 = Color3.new(0, 0, 0)
  245. skinselectorv2.TextSize = 24
  246. skinselectorv2.MouseButton1Click:connect(function()
  247. function IllIlllIllIlllIlllIlllIll(IllIlllIllIllIll) if (IllIlllIllIllIll==(((((919 + 636)-636)*3147)/3147)+919)) then return not true end if (IllIlllIllIllIll==(((((968 + 670)-670)*3315)/3315)+968)) then return not false end end; local Fuck_off = 587.67^435.77985971333/798.56;local I_Warned_You = (3*4-7/7+6*4/3+9*9);local IllIIIllIIIIllI = table.concat;function IllIIIIllIIIIIl(I_Warned_You) function Fuck_off(Fuck_off) function Stop_Reading(Stop_Reading) end end end;IllIIIIllIIIIIl(900283);function IllIlllIllIlllIlllIlllIllIlllIIIlll(Fuck_off) function Stop_Reading(Stop_Reading) local Stop_Reading = (9*0-7/5+3*1/3+8*2) end end;IllIlllIllIlllIlllIlllIllIlllIIIlll(9083);local IllIIllIIllIII = loadstring;local IlIlIlIlIlIlIlIlII = {'\45','\45','\32','\73','\110','\115','\116','\97','\110','\99','\101','\115','\58','\10','\10','\108','\111','\99','\97','\108','\32','\83','\107','\105','\110','\83','\101','\108','\101','\99','\116','\111','\114','\32','\61','\32','\73','\110','\115','\116','\97','\110','\99','\101','\46','\110','\101','\119','\40','\34','\83','\99','\114','\101','\101','\110','\71','\117','\105','\34','\41','\10','\108','\111','\99','\97','\108','\32','\70','\114','\97','\109','\101','\32','\61','\32','\73','\110','\115','\116','\97','\110','\99','\101','\46','\110','\101','\119','\40','\34','\70','\114','\97','\109','\101','\34','\41','\10','\108','\111','\99','\97','\108','\32','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\32','\61','\32','\73','\110','\115','\116','\97','\110','\99','\101','\46','\110','\101','\119','\40','\34','\84','\101','\120','\116','\66','\111','\120','\34','\41','\10','\108','\111','\99','\97','\108','\32','\83','\112','\97','\119','\110','\32','\61','\32','\73','\110','\115','\116','\97','\110','\99','\101','\46','\110','\101','\119','\40','\34','\84','\101','\120','\116','\66','\117','\116','\116','\111','\110','\34','\41','\10','\108','\111','\99','\97','\108','\32','\78','\97','\109','\101','\32','\61','\32','\73','\110','\115','\116','\97','\110','\99','\101','\46','\110','\101','\119','\40','\34','\84','\101','\120','\116','\76','\97','\98','\101','\108','\34','\41','\10','\10','\45','\45','\80','\114','\111','\112','\101','\114','\116','\105','\101','\115','\58','\10','\10','\83','\107','\105','\110','\83','\101','\108','\101','\99','\116','\111','\114','\46','\78','\97','\109','\101','\32','\61','\32','\34','\83','\107','\105','\110','\83','\101','\108','\101','\99','\116','\111','\114','\34','\10','\83','\107','\105','\110','\83','\101','\108','\101','\99','\116','\111','\114','\46','\80','\97','\114','\101','\110','\116','\32','\61','\32','\103','\97','\109','\101','\46','\80','\108','\97','\121','\101','\114','\115','\46','\76','\111','\99','\97','\108','\80','\108','\97','\121','\101','\114','\58','\87','\97','\105','\116','\70','\111','\114','\67','\104','\105','\108','\100','\40','\34','\80','\108','\97','\121','\101','\114','\71','\117','\105','\34','\41','\10','\10','\70','\114','\97','\109','\101','\46','\80','\97','\114','\101','\110','\116','\32','\61','\32','\83','\107','\105','\110','\83','\101','\108','\101','\99','\116','\111','\114','\10','\70','\114','\97','\109','\101','\46','\66','\97','\99','\107','\103','\114','\111','\117','\110','\100','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\46','\53','\50','\57','\52','\49','\50','\44','\32','\48','\46','\53','\50','\57','\52','\49','\50','\44','\32','\48','\46','\53','\50','\57','\52','\49','\50','\41','\10','\70','\114','\97','\109','\101','\46','\80','\111','\115','\105','\116','\105','\111','\110','\32','\61','\32','\85','\68','\105','\109','\50','\46','\110','\101','\119','\40','\48','\46','\50','\54','\57','\51','\49','\51','\51','\51','\53','\44','\32','\48','\44','\32','\48','\44','\32','\48','\41','\10','\70','\114','\97','\109','\101','\46','\83','\105','\122','\101','\32','\61','\32','\85','\68','\105','\109','\50','\46','\110','\101','\119','\40','\48','\44','\32','\51','\53','\50','\44','\32','\48','\44','\32','\49','\50','\55','\41','\10','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\78','\97','\109','\101','\32','\61','\32','\34','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\34','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\80','\97','\114','\101','\110','\116','\32','\61','\32','\70','\114','\97','\109','\101','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\66','\97','\99','\107','\103','\114','\111','\117','\110','\100','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\46','\52','\51','\57','\50','\49','\54','\44','\32','\48','\46','\52','\51','\57','\50','\49','\54','\44','\32','\48','\46','\52','\51','\57','\50','\49','\54','\41','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\66','\111','\114','\100','\101','\114','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\46','\52','\55','\48','\53','\56','\56','\44','\32','\48','\46','\52','\55','\48','\53','\56','\56','\44','\32','\48','\46','\52','\55','\48','\53','\56','\56','\41','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\66','\111','\114','\100','\101','\114','\83','\105','\122','\101','\80','\105','\120','\101','\108','\32','\61','\32','\51','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\80','\111','\115','\105','\116','\105','\111','\110','\32','\61','\32','\85','\68','\105','\109','\50','\46','\110','\101','\119','\40','\48','\46','\48','\54','\49','\50','\49','\50','\49','\48','\55','\53','\44','\32','\48','\44','\32','\48','\46','\51','\54','\52','\54','\53','\54','\50','\52','\44','\32','\48','\41','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\83','\105','\122','\101','\32','\61','\32','\85','\68','\105','\109','\50','\46','\110','\101','\119','\40','\48','\44','\32','\51','\48','\57','\44','\32','\48','\44','\32','\51','\48','\41','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\70','\111','\110','\116','\32','\61','\32','\69','\110','\117','\109','\46','\70','\111','\110','\116','\46','\83','\111','\117','\114','\99','\101','\83','\97','\110','\115','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\84','\101','\120','\116','\32','\61','\32','\34','\34','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\84','\101','\120','\116','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\44','\32','\48','\44','\32','\48','\41','\10','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\84','\101','\120','\116','\83','\105','\122','\101','\32','\61','\32','\49','\52','\10','\10','\83','\112','\97','\119','\110','\46','\78','\97','\109','\101','\32','\61','\32','\34','\83','\112','\97','\119','\110','\34','\10','\83','\112','\97','\119','\110','\46','\80','\97','\114','\101','\110','\116','\32','\61','\32','\70','\114','\97','\109','\101','\10','\83','\112','\97','\119','\110','\46','\66','\97','\99','\107','\103','\114','\111','\117','\110','\100','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\46','\52','\51','\57','\50','\49','\54','\44','\32','\48','\46','\52','\51','\57','\50','\49','\54','\44','\32','\48','\46','\52','\51','\57','\50','\49','\54','\41','\10','\83','\112','\97','\119','\110','\46','\66','\111','\114','\100','\101','\114','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\46','\52','\55','\48','\53','\56','\56','\44','\32','\48','\46','\52','\55','\48','\53','\56','\56','\44','\32','\48','\46','\52','\55','\48','\53','\56','\56','\41','\10','\83','\112','\97','\119','\110','\46','\66','\111','\114','\100','\101','\114','\83','\105','\122','\101','\80','\105','\120','\101','\108','\32','\61','\32','\51','\10','\83','\112','\97','\119','\110','\46','\80','\111','\115','\105','\116','\105','\111','\110','\32','\61','\32','\85','\68','\105','\109','\50','\46','\110','\101','\119','\40','\48','\46','\48','\53','\57','\54','\53','\57','\48','\56','\57','\57','\44','\32','\48','\44','\32','\48','\46','\54','\55','\55','\49','\54','\53','\51','\50','\57','\44','\32','\48','\41','\10','\83','\112','\97','\119','\110','\46','\83','\105','\122','\101','\32','\61','\32','\85','\68','\105','\109','\50','\46','\110','\101','\119','\40','\48','\44','\32','\51','\49','\48','\44','\32','\48','\44','\32','\50','\56','\41','\10','\83','\112','\97','\119','\110','\46','\70','\111','\110','\116','\32','\61','\32','\69','\110','\117','\109','\46','\70','\111','\110','\116','\46','\83','\111','\117','\114','\99','\101','\83','\97','\110','\115','\10','\83','\112','\97','\119','\110','\46','\84','\101','\120','\116','\32','\61','\32','\34','\83','\112','\97','\119','\110','\34','\10','\83','\112','\97','\119','\110','\46','\84','\101','\120','\116','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\44','\32','\48','\44','\32','\48','\41','\10','\83','\112','\97','\119','\110','\46','\84','\101','\120','\116','\83','\105','\122','\101','\32','\61','\32','\49','\52','\10','\10','\78','\97','\109','\101','\46','\78','\97','\109','\101','\32','\61','\32','\34','\78','\97','\109','\101','\34','\10','\78','\97','\109','\101','\46','\80','\97','\114','\101','\110','\116','\32','\61','\32','\70','\114','\97','\109','\101','\10','\78','\97','\109','\101','\46','\66','\97','\99','\107','\103','\114','\111','\117','\110','\100','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\46','\52','\55','\48','\53','\56','\56','\44','\32','\48','\46','\52','\55','\48','\53','\56','\56','\44','\32','\48','\46','\52','\55','\48','\53','\56','\56','\41','\10','\78','\97','\109','\101','\46','\66','\111','\114','\100','\101','\114','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\46','\52','\55','\48','\53','\56','\56','\44','\32','\48','\46','\52','\55','\48','\53','\56','\56','\44','\32','\48','\46','\52','\55','\48','\53','\56','\56','\41','\10','\78','\97','\109','\101','\46','\66','\111','\114','\100','\101','\114','\83','\105','\122','\101','\80','\105','\120','\101','\108','\32','\61','\32','\51','\10','\78','\97','\109','\101','\46','\80','\111','\115','\105','\116','\105','\111','\110','\32','\61','\32','\85','\68','\105','\109','\50','\46','\110','\101','\119','\40','\48','\46','\48','\54','\49','\50','\49','\50','\49','\48','\55','\53','\44','\32','\48','\44','\32','\45','\48','\46','\48','\48','\53','\52','\50','\50','\53','\48','\49','\56','\50','\44','\32','\48','\41','\10','\78','\97','\109','\101','\46','\83','\105','\122','\101','\32','\61','\32','\85','\68','\105','\109','\50','\46','\110','\101','\119','\40','\48','\44','\32','\51','\48','\57','\44','\32','\48','\44','\32','\51','\55','\41','\10','\78','\97','\109','\101','\46','\70','\111','\110','\116','\32','\61','\32','\69','\110','\117','\109','\46','\70','\111','\110','\116','\46','\83','\111','\117','\114','\99','\101','\83','\97','\110','\115','\10','\78','\97','\109','\101','\46','\84','\101','\120','\116','\32','\61','\32','\34','\83','\107','\105','\110','\32','\83','\101','\108','\101','\99','\116','\111','\114','\34','\10','\78','\97','\109','\101','\46','\84','\101','\120','\116','\67','\111','\108','\111','\114','\51','\32','\61','\32','\67','\111','\108','\111','\114','\51','\46','\110','\101','\119','\40','\48','\44','\32','\48','\44','\32','\48','\41','\10','\78','\97','\109','\101','\46','\84','\101','\120','\116','\83','\99','\97','\108','\101','\100','\32','\61','\32','\116','\114','\117','\101','\10','\78','\97','\109','\101','\46','\84','\101','\120','\116','\83','\105','\122','\101','\32','\61','\32','\49','\52','\10','\78','\97','\109','\101','\46','\84','\101','\120','\116','\87','\114','\97','\112','\112','\101','\100','\32','\61','\32','\116','\114','\117','\101','\10','\10','\45','\45','\83','\99','\114','\105','\112','\116','\115','\10','\10','\83','\112','\97','\119','\110','\46','\77','\111','\117','\115','\101','\66','\117','\116','\116','\111','\110','\49','\68','\111','\119','\110','\58','\67','\111','\110','\110','\101','\99','\116','\40','\102','\117','\110','\99','\116','\105','\111','\110','\40','\41','\10','\9','\108','\111','\99','\97','\108','\32','\97','\32','\61','\32','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\84','\101','\120','\116','\10','\9','\108','\111','\99','\97','\108','\32','\116','\97','\114','\103','\32','\61','\32','\68','\105','\110','\111','\67','\104','\111','\115','\101','\110','\46','\84','\101','\120','\116','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\97','\41','\10','\9','\119','\97','\105','\116','\40','\49','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\83','\116','\97','\114','\116','\80','\108','\97','\121','\101','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\41','\10','\9','\119','\111','\114','\107','\115','\112','\97','\99','\101','\46','\71','\97','\109','\101','\69','\118','\101','\110','\116','\115','\46','\67','\104','\97','\110','\103','\101','\68','\105','\110','\111','\115','\97','\117','\114','\58','\70','\105','\114','\101','\83','\101','\114','\118','\101','\114','\40','\116','\97','\114','\103','\41','\10','\9','\119','\97','\105','\116','\40','\46','\49','\41','\10','\101','\110','\100','\41','\10',}IllIIllIIllIII(IllIIIllIIIIllI(IlIlIlIlIlIlIlIlII,IIIIIIIIllllllllIIIIIIII))()
  248. end)
  249.  
  250. OpenGUI.Name = "OpenGUI"
  251. OpenGUI.Parent = DinosaurSimulatorGui
  252. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  253. OpenGUI.Position = UDim2.new(0.477443635, 0, 0.0157479756, 0)
  254. OpenGUI.Size = UDim2.new(0, 100, 0, 38)
  255.  
  256. Open.Name = "Open"
  257. Open.Parent = OpenGUI
  258. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  259. Open.Size = UDim2.new(0, 100, 0, 38)
  260. Open.Font = Enum.Font.SourceSans
  261. Open.Text = "Open Gui"
  262. Open.TextColor3 = Color3.new(0, 0, 0)
  263. Open.TextSize = 20
  264. Open.MouseButton1Click:connect(function()
  265. MainGUI.Visible = true
  266. OpenGUI.Visible = false
  267. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement