Advertisement
Guest User

noxxy <3

a guest
Mar 24th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.85 KB | None | 0 0
  1. ------------------------------------------------------------------------------------------
  2. ---Created by Monotonous @ V3rmillion
  3. ------------------------------------------------------------------------------------------
  4.  
  5. local menu = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  6. menu.Name = "Menu"
  7.  
  8. local menuFrame = Instance.new("Frame", game.Players.LocalPlayer.PlayerGui.Menu)
  9. menuFrame.Style = "RobloxRound"
  10. menuFrame.Position = UDim2.new(0, 0, 1, -300)
  11. menuFrame.Size = UDim2.new(0, 400, 0, 300)
  12. menuFrame.Draggable = true
  13.  
  14. local menuTitle = Instance.new("Frame", game.Players.LocalPlayer.PlayerGui.Menu.Frame)
  15. menuTitle.Name = "Title"
  16. menuTitle.BackgroundTransparency = 1
  17. menuTitle.Position = UDim2.new(0.5, -60, 0, 1)
  18. menuTitle.Size = UDim2.new(0, 120, 0, 40)
  19.  
  20. local menuTitleLabel = Instance.new("TextLabel", game.Players.LocalPlayer.PlayerGui.Menu.Frame.Title)
  21. menuTitleLabel.Name = "MenuLabel"
  22. menuTitleLabel.Text = "Infinity RPG GUI v2"
  23. menuTitleLabel.Font = "Highway"
  24. menuTitleLabel.FontSize = "Size32"
  25. menuTitleLabel.TextColor3 = Color3.fromRGB(82, 255, 43)
  26. menuTitleLabel.Position = UDim2.new(0.5, -60, 0, -8)
  27. menuTitleLabel.Size = UDim2.new(0, 120, 0, 40)
  28. menuTitleLabel.BackgroundTransparency = 1
  29.  
  30. local who = Instance.new("TextBox", game.Players.LocalPlayer.PlayerGui.Menu.Frame)
  31. who.Name = "who"
  32. who.Text = "Target Here"
  33. who.Position = UDim2.new(0.5, 10, 0, 80)
  34. who.Size = UDim2.new(0, 160, 0, 60)
  35. who.BackgroundColor3 = Color3.fromRGB(82, 255, 43)
  36.  
  37. local deityOpen = Instance.new("TextButton", game.Players.LocalPlayer.PlayerGui.Menu.Frame)
  38. deityOpen.Name = "openDeity"
  39. deityOpen.Text = "Deity Door Remover"
  40. deityOpen.Position = UDim2.new(0.5, -170, 0, 60)
  41. deityOpen.Size = UDim2.new(0, 130, 0 ,30)
  42. deityOpen.BackgroundColor3 = Color3.fromRGB(82, 255, 43)
  43. deityOpen.MouseButton1Click:connect(function()
  44. game.Workspace.Map.Realms.Spawn.gDeityCheck:Destroy()
  45. game.Workspace.Advanced.gDeity.SurfaceGui:Clone().Parent=game.Lighting
  46. game.Workspace.Advanced.gDeity:ClearAllChildren()
  47. game.Lighting.SurfaceGui:Clone().Parent=game.Workspace.Advanced.gDeity
  48. game.Workspace.Advanced.gDeity.CanCollide = false
  49. end)
  50.  
  51. local statDefine = Instance.new("TextBox", game.Players.LocalPlayer.PlayerGui.Menu.Frame)
  52. statDefine.Name = "customVal"
  53. statDefine.Text = "Enter Value Here"
  54. statDefine.Position = UDim2.new(0.5, 10, 0 , 160)
  55. statDefine.Size = UDim2.new(0, 160, 0, 60)
  56. statDefine.BackgroundColor3 = Color3.fromRGB(82, 255, 43)
  57.  
  58. local setLevel = Instance.new("TextButton", game.Players.LocalPlayer.PlayerGui.Menu.Frame)
  59. setLevel.Name = "setLevel"
  60. setLevel.Text = "Set Level"
  61. setLevel.Position = UDim2.new(0.5, -170, 0, 120)
  62. setLevel.Size = UDim2.new(0, 130, 0 ,30)
  63. setLevel.BackgroundColor3 = Color3.fromRGB(82, 255, 43)
  64. setLevel.MouseButton1Click:connect(function()
  65. local player = game.Players[game.Players.LocalPlayer.PlayerGui.Menu.Frame.who.Text]
  66. cusVal = statDefine.Text
  67. player.leaderstats.Level.Value = tonumber(cusVal)
  68. end)
  69.  
  70. local easterEgg = Instance.new("TextButton", game.Players.LocalPlayer.PlayerGui.Menu.Frame)
  71. easterEgg.Name = "easterEgg"
  72. easterEgg.Text = "Spawn Easter Eggs"
  73. easterEgg.Position = UDim2.new(0.5, -170, 0, 240)
  74. easterEgg.Size = UDim2.new(0, 130, 0 ,30)
  75. easterEgg.BackgroundColor3 = Color3.fromRGB(82, 255, 43)
  76. easterEgg.MouseButton1Click:connect(function()
  77. local player = game.Players[game.Players.LocalPlayer.PlayerGui.Menu.Frame.who.Text]
  78.  
  79. local candy = game.Workspace.eggholder:FindFirstChild("Candy Cane Egg")
  80.  
  81. if candy then
  82. candy.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  83. end
  84.  
  85. local sapphire = game.Workspace.eggholder:FindFirstChild("Sapphire Egg")
  86.  
  87. if sapphire then
  88. sapphire.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  89. end
  90.  
  91. local fire = game.Workspace.eggholder:FindFirstChild("Fire Egg")
  92.  
  93. if fire then
  94. fire.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  95. end
  96.  
  97. local runic = game.Workspace.eggholder:FindFirstChild("Runic Egg")
  98.  
  99. if runic then
  100. runic.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  101. end
  102.  
  103. local easter = game.Workspace.eggholder:FindFirstChild("Traditional Easter Egg")
  104.  
  105. if easter then
  106. easter.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  107. end
  108.  
  109. local golden = game.Workspace.eggholder:FindFirstChild("Golden King Egg")
  110.  
  111. if golden then
  112. golden.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  113. end
  114.  
  115. local observation = game.Workspace.eggholder:FindFirstChild("Observation Egg")
  116.  
  117. if observation then
  118. observation.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  119. end
  120.  
  121. local wasp = game.Workspace.eggholder:FindFirstChild("1S-WASP J140747")
  122.  
  123. if wasp then
  124. wasp.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  125. end
  126.  
  127. local cruel = game.Workspace.eggholder:FindFirstChild("Cruel Faberge Egg of Infinity")
  128.  
  129. if cruel then
  130. cruel.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  131. end
  132.  
  133. local infinity = game.Workspace.eggholder:FindFirstChild("Infinity Sugar Egg")
  134.  
  135. if infinity then
  136. infinity.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  137. end
  138.  
  139. local cyanite = game.Workspace.eggholder:FindFirstChild("Dragon Faberge Egg of Cyanite")
  140.  
  141. if cyanite then
  142. cyanite.Position = game.Workspace.PlayerHolder[player.Name].Torso.Position
  143. end
  144. end)
  145.  
  146. local money = Instance.new("TextButton",game.Players.LocalPlayer.PlayerGui.Menu.Frame)
  147. money.Position = UDim2.new(0.5,-170,0,180)
  148. money.Size = UDim2.new(0,130,0,30)
  149. money.Text = "Set Money"
  150. money.Name = "money"
  151. money.BackgroundColor3 = Color3.fromRGB(82, 255, 43)
  152. money.MouseButton1Click:connect(function()
  153. local player = game.Players[game.Players.LocalPlayer.PlayerGui.Menu.Frame.who.Text]
  154. cusVal = statDefine.Text
  155. player.leaderstats.Gold.Value = tonumber(cusVal)
  156. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement