Advertisement
iiJakub_11

Nature X 0.2

Mar 19th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.55 KB | None | 0 0
  1. -- Nature X 0.2 GUI
  2. local NatureX = Instance.new("ScreenGui")
  3. local LogInGUI = Instance.new("Frame")
  4. local Sign1 = Instance.new("TextLabel")
  5. local Submit = Instance.new("TextButton")
  6. local Password = Instance.new("TextBox")
  7. local MainGUI = Instance.new("Frame")
  8. local CTRLDelete = Instance.new("TextButton")
  9. local Sign2 = Instance.new("TextLabel")
  10. local PrisonLifeOP = Instance.new("TextButton")
  11. local RevizADMIN = Instance.new("TextButton")
  12. local LowGravity = Instance.new("TextButton")
  13. local Speed = Instance.new("TextButton")
  14. local SpinKiller = Instance.new("TextButton")
  15. local GrabKnifeV3 = Instance.new("TextButton")
  16. local FunctionValue = Instance.new("TextBox")
  17. local CloseMainGUI = Instance.new("TextButton")
  18. local OpenGUI = Instance.new("Frame")
  19. local TextButton = Instance.new("TextButton")
  20. --Properties:
  21. NatureX.Name = "NatureX"
  22. NatureX.Parent = game.CoreGui
  23.  
  24. LogInGUI.Name = "LogInGUI"
  25. LogInGUI.Parent = NatureX
  26. LogInGUI.BackgroundColor3 = Color3.new(0, 0, 0)
  27. LogInGUI.BorderColor3 = Color3.new(0, 0, 0)
  28. LogInGUI.Position = UDim2.new(0.0200729929, 0, 0.61623615, 0)
  29. LogInGUI.Size = UDim2.new(0, 420, 0, 198)
  30. LogInGUI.Style = Enum.FrameStyle.RobloxRound
  31. LogInGUI.Active = true
  32. LogInGUI.Draggable = true
  33.  
  34. Sign1.Name = "Sign1"
  35. Sign1.Parent = LogInGUI
  36. Sign1.BackgroundColor3 = Color3.new(1, 1, 1)
  37. Sign1.BackgroundTransparency = 1
  38. Sign1.Position = UDim2.new(-0.110801302, 0, -0.0341536403, 0)
  39. Sign1.Size = UDim2.new(0, 499, 0, 51)
  40. Sign1.Font = Enum.Font.GothamBlack
  41. Sign1.Text = "Nature X"
  42. Sign1.TextColor3 = Color3.new(0, 1, 1)
  43. Sign1.TextScaled = true
  44. Sign1.TextSize = 14
  45. Sign1.TextWrapped = true
  46.  
  47. Submit.Name = "Submit"
  48. Submit.Parent = LogInGUI
  49. Submit.BackgroundColor3 = Color3.new(0, 1, 1)
  50. Submit.BackgroundTransparency = 1
  51. Submit.BorderSizePixel = 0
  52. Submit.Position = UDim2.new(0.254761904, 0, 0.358585835, 0)
  53. Submit.Size = UDim2.new(0, 200, 0, 50)
  54. Submit.Font = Enum.Font.SourceSans
  55. Submit.Text = "Verify"
  56. Submit.TextColor3 = Color3.new(1, 1, 1)
  57. Submit.TextScaled = true
  58. Submit.TextSize = 14
  59. Submit.TextWrapped = true
  60. Submit.MouseButton1Down:connect(function()
  61.     if Password == "Jxkub" then
  62.         LogInGUI.Visible = false
  63.         OpenGUI.Visible = true
  64.     end
  65. end)
  66. Submit.MouseButton1Down:connect(function()
  67.     if Password == "Emma" then
  68.         LogInGUI.Visible = false
  69.         OpenGUI.Visible = true
  70.     end
  71. end)
  72. Password.Name = "Password"
  73. Password.Parent = LogInGUI
  74. Password.BackgroundColor3 = Color3.new(0, 1, 1)
  75. Password.Position = UDim2.new(0.0563265122, 0, 0.6734007, 0)
  76. Password.Size = UDim2.new(0, 358, 0, 50)
  77. Password.Font = Enum.Font.SourceSans
  78. Password.Text = "Password Here"
  79. Password.TextColor3 = Color3.new(0, 0, 0)
  80. Password.TextScaled = true
  81. Password.TextSize = 14
  82. Password.TextWrapped = true
  83.  
  84. MainGUI.Name = "MainGUI"
  85. MainGUI.Parent = NatureX
  86. MainGUI.BackgroundColor3 = Color3.new(0.462745, 0.462745, 0.462745)
  87. MainGUI.Position = UDim2.new(0.189781025, 0, 0.317343235, 0)
  88. MainGUI.Size = UDim2.new(0, 629, 0, 347)
  89. MainGUI.Visible = false
  90. MainGUI.Active = true
  91. MainGUI.Draggable = true
  92.  
  93. CTRLDelete.Name = "CTRLDelete"
  94. CTRLDelete.Parent = MainGUI
  95. CTRLDelete.BackgroundColor3 = Color3.new(0, 1, 1)
  96. CTRLDelete.Position = UDim2.new(0.0348679349, 0, 0.219488382, 0)
  97. CTRLDelete.Size = UDim2.new(0, 119, 0, 56)
  98. CTRLDelete.Font = Enum.Font.GothamSemibold
  99. CTRLDelete.Text = "CTRL Delete"
  100. CTRLDelete.TextColor3 = Color3.new(0, 0, 0)
  101. CTRLDelete.TextScaled = true
  102. CTRLDelete.TextSize = 14
  103. CTRLDelete.TextWrapped = true
  104. CTRLDelete.MouseButton1Down:connect(function()
  105.     local Plr = game:GetService("Players").LocalPlayer
  106. local Mouse = Plr:GetMouse()
  107.  
  108. Mouse.Button1Down:connect(function()
  109. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  110. if not Mouse.Target then return end
  111. Mouse.Target:Destroy()
  112. end)
  113. end)
  114.  
  115. Sign2.Name = "Sign2"
  116. Sign2.Parent = MainGUI
  117. Sign2.BackgroundColor3 = Color3.new(1, 1, 1)
  118. Sign2.BackgroundTransparency = 1
  119. Sign2.Size = UDim2.new(0, 628, 0, 59)
  120. Sign2.Font = Enum.Font.GothamSemibold
  121. Sign2.Text = "Nature X"
  122. Sign2.TextColor3 = Color3.new(1, 1, 1)
  123. Sign2.TextScaled = true
  124. Sign2.TextSize = 14
  125. Sign2.TextWrapped = true
  126. while true do
  127. game.CoreGui.NatureX.MainGUI.Sign2.TextColor3 = Color3.new(255, 255, 255)
  128. wait(0.2)
  129. game.CoreGui.NatureX.MainGUI.Sign2.TextColor3 = Color3.new(0, 255, 0)
  130. wait(0.2)
  131. game.CoreGui.NatureX.MainGUI.Sign2.TextColor3 = Color3.new(255, 0, 255)
  132. wait(0.2)
  133. game.CoreGui.NatureX.MainGUI.Sign2.TextColor3 = Color3.new(0, 255, 255)
  134. wait(0.2)
  135. end
  136.  
  137. PrisonLifeOP.Name = "PrisonLifeOP"
  138. PrisonLifeOP.Parent = MainGUI
  139. PrisonLifeOP.BackgroundColor3 = Color3.new(0, 1, 1)
  140. PrisonLifeOP.Position = UDim2.new(0.0333863273, 0, 0.426512957, 0)
  141. PrisonLifeOP.Size = UDim2.new(0, 119, 0, 52)
  142. PrisonLifeOP.Font = Enum.Font.GothamSemibold
  143. PrisonLifeOP.Text = "OP Prison Life Script"
  144. PrisonLifeOP.TextColor3 = Color3.new(0, 0, 0)
  145. PrisonLifeOP.TextScaled = true
  146. PrisonLifeOP.TextSize = 14
  147. PrisonLifeOP.TextWrapped = true
  148. PrisonLifeOP.MouseButton1Down:connect(function()
  149. loadstring(game:HttpGet("https://pastebin.com/raw/swzL1pw5",true))()
  150.  
  151. RevizADMIN.Name = "RevizADMIN"
  152. RevizADMIN.Parent = MainGUI
  153. RevizADMIN.BackgroundColor3 = Color3.new(0, 1, 1)
  154. RevizADMIN.Position = UDim2.new(0.0333863273, 0, 0.6311239, 0)
  155. RevizADMIN.Size = UDim2.new(0, 119, 0, 47)
  156. RevizADMIN.Font = Enum.Font.GothamSemibold
  157. RevizADMIN.Text = "Reviz Admin"
  158. RevizADMIN.TextColor3 = Color3.new(0, 0, 0)
  159. RevizADMIN.TextScaled = true
  160. RevizADMIN.TextSize = 14
  161. RevizADMIN.TextWrapped = true
  162. RevizADMIN.MouseButton1Down:connect(function()
  163.     loadstring(game:HttpGet("https://pastebin.com/raw/KNUzQPYS",true))()
  164. end)
  165.  
  166. LowGravity.Name = "LowGravity"
  167. LowGravity.Parent = MainGUI
  168. LowGravity.BackgroundColor3 = Color3.new(0, 1, 1)
  169. LowGravity.Position = UDim2.new(0.303656608, 0, 0.219020173, 0)
  170. LowGravity.Size = UDim2.new(0, 116, 0, 56)
  171. LowGravity.Font = Enum.Font.GothamSemibold
  172. LowGravity.Text = "Low. Gravity"
  173. LowGravity.TextColor3 = Color3.new(0, 0, 0)
  174. LowGravity.TextScaled = true
  175. LowGravity.TextSize = 14
  176. LowGravity.TextWrapped = true
  177. LowGravity.MouseButton1Down:connect(function()
  178.     game.Workspace.Gravity = game.CoreGui.NatureX.MainGUI.FunctionValue
  179. end)
  180.  
  181. Speed.Name = "Speed"
  182. Speed.Parent = MainGUI
  183. Speed.BackgroundColor3 = Color3.new(0, 1, 1)
  184. Speed.Position = UDim2.new(0.303656608, 0, 0.432276666, 0)
  185. Speed.Size = UDim2.new(0, 116, 0, 50)
  186. Speed.Font = Enum.Font.GothamSemibold
  187. Speed.Text = "Speed"
  188. Speed.TextColor3 = Color3.new(0, 0, 0)
  189. Speed.TextScaled = true
  190. Speed.TextSize = 14
  191. Speed.TextWrapped = true
  192. Speed.MouseButton1Down:connect(function()
  193.     game.Workspace.Name.Humanoid.Walkspeed = game.CoreGui.NatureX.MainGUI.FunctionValue
  194. end)
  195.  
  196. SpinKiller.Name = "SpinKiller"
  197. SpinKiller.Parent = MainGUI
  198. SpinKiller.BackgroundColor3 = Color3.new(0, 1, 1)
  199. SpinKiller.Position = UDim2.new(0.303656608, 0, 0.6311239, 0)
  200. SpinKiller.Size = UDim2.new(0, 116, 0, 47)
  201. SpinKiller.Font = Enum.Font.GothamSemibold
  202. SpinKiller.Text = "Spinning Killer"
  203. SpinKiller.TextColor3 = Color3.new(0, 0, 0)
  204. SpinKiller.TextScaled = true
  205. SpinKiller.TextSize = 14
  206. SpinKiller.TextWrapped = true
  207. SpinKiller.MouseButton1Down:connect(function()
  208.     loadstring(game:GetHttp("https://pastebin.com/raw/3XkWwa2J",true))()
  209. end)
  210.  
  211. GrabKnifeV3.Name = "GrabKnifeV3"
  212. GrabKnifeV3.Parent = MainGUI
  213. GrabKnifeV3.BackgroundColor3 = Color3.new(0, 1, 1)
  214. GrabKnifeV3.Position = UDim2.new(0.565977752, 0, 0.219020173, 0)
  215. GrabKnifeV3.Size = UDim2.new(0, 119, 0, 56)
  216. GrabKnifeV3.Font = Enum.Font.GothamSemibold
  217. GrabKnifeV3.Text = "Grab Knife v3"
  218. GrabKnifeV3.TextColor3 = Color3.new(0, 0, 0)
  219. GrabKnifeV3.TextScaled = true
  220. GrabKnifeV3.TextSize = 14
  221. GrabKnifeV3.TextWrapped = true
  222. GrabKnifeV3.MouseButton1Down:connect(function()
  223.     loadstring(game:HttpGet("https://pastebin.com/raw/GD9H1qEJ",true))()
  224. end)
  225.  
  226. FunctionValue.Name = "FunctionValue"
  227. FunctionValue.Parent = MainGUI
  228. FunctionValue.BackgroundColor3 = Color3.new(1, 1, 1)
  229. FunctionValue.BackgroundTransparency = 0.5
  230. FunctionValue.Position = UDim2.new(0.116057232, 0, 0.806916416, 0)
  231. FunctionValue.Size = UDim2.new(0, 478, 0, 50)
  232. FunctionValue.Font = Enum.Font.Highway
  233. FunctionValue.Text = "Number Here"
  234. FunctionValue.TextColor3 = Color3.new(0, 0, 0)
  235. FunctionValue.TextScaled = true
  236. FunctionValue.TextSize = 14
  237. FunctionValue.TextWrapped = true
  238. FunctionValue = Instance.new("IntValue",game.CoreGui.NatureX)
  239.  
  240. CloseMainGUI.Name = "CloseMainGUI"
  241. CloseMainGUI.Parent = MainGUI
  242. CloseMainGUI.BackgroundColor3 = Color3.new(1, 0, 0)
  243. CloseMainGUI.ClipsDescendants = true
  244. CloseMainGUI.Position = UDim2.new(0.864864886, 0, 0, 0)
  245. CloseMainGUI.Size = UDim2.new(0, 85, 0, 32)
  246. CloseMainGUI.Font = Enum.Font.Highway
  247. CloseMainGUI.Text = "Close"
  248. CloseMainGUI.TextColor3 = Color3.new(1, 1, 1)
  249. CloseMainGUI.TextScaled = true
  250. CloseMainGUI.TextSize = 14
  251. CloseMainGUI.TextWrapped = true
  252. CloseMainGUI.MouseButton1Down:connect(function()
  253.     MainGUI.Visible = false
  254.     OpenGUI.Visible = true
  255. end)
  256.  
  257. OpenGUI.Name = "OpenGUI"
  258. OpenGUI.Parent = NatureX
  259. OpenGUI.BackgroundColor3 = Color3.new(0.462745, 0.462745, 0.462745)
  260. OpenGUI.Position = UDim2.new(0, 0, 0.719557166, 0)
  261. OpenGUI.Size = UDim2.new(0, 75, 0, 27)
  262. OpenGUI.Visible = false
  263. OpenGUI.Active = true
  264. OpenGUI.Draggable = false
  265.  
  266. TextButton.Parent = OpenGUI
  267. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  268. TextButton.BackgroundTransparency = 0.5
  269. TextButton.Size = UDim2.new(0, 75, 0, 27)
  270. TextButton.Font = Enum.Font.Highway
  271. TextButton.Text = "Open"
  272. TextButton.TextColor3 = Color3.new(0, 0, 0)
  273. TextButton.TextScaled = true
  274. TextButton.TextSize = 14
  275. TextButton.TextWrapped = true
  276. TextButton.MouseButton1Down:connect(function()
  277.     OpenGUI.Visible = false
  278.     MainGUI.Visible = true
  279. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement