Advertisement
Guest User

Untitled

a guest
Jan 8th, 2017
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.09 KB | None | 0 0
  1. local player=game.Players.LocalPlayer;
  2. local Player = game.Players.LocalPlayer
  3. Mouse = Player:GetMouse()
  4. local modded=false
  5. --GUI
  6. local GUI=Instance.new('ScreenGui', game.CoreGui);
  7. UpdateFrame=Instance.new('Frame', GUI);
  8. UpdateFrame.Size = UDim2.new(0, 0, 0, 0);
  9. UpdateFrame.Position = UDim2.new(0.38, 0, 0.2, 0);
  10. UpdateFrame.BackgroundTransparency=0.6;
  11. UpdateFrame.BackgroundColor3=Color3.new(0,0,0);
  12. TextUpdate1=Instance.new('TextLabel',UpdateFrame);
  13. TextUpdate1.Text='CH34T MENU V.20';
  14. TextUpdate1.Size = UDim2.new(1, 0, 0, 50);
  15. TextUpdate1.Position = UDim2.new(0, 0, 0, 0);
  16. TextUpdate1.TextScaled=true;
  17. TextUpdate1.TextStrokeColor3=Color3.new(255,0,0);
  18. TextUpdate1.TextColor3=Color3.new(255,255,255);
  19. TextUpdate1.Font='SciFi';
  20. TextUpdate1.TextStrokeTransparency=0.5;
  21. TextUpdate1.BackgroundTransparency=1;
  22.  
  23.  
  24. local Open = Instance.new("Sound")
  25. Open.Parent = GUI
  26. Open.SoundId = "http://www.roblox.com/asset/?ID=169154227"
  27. Open.Pitch = 1.2
  28. Open.Volume = 1
  29.  
  30. TextUpdate2=Instance.new('TextLabel',UpdateFrame);
  31. TextUpdate2.Text='-Bypass Shutdowns (UnStable)';
  32. TextUpdate2.Size = UDim2.new(1, 0, 0, 50);
  33. TextUpdate2.Position = UDim2.new(0, 0, 0.3, 0);
  34. TextUpdate2.TextSize=26
  35. TextUpdate2.TextStrokeColor3=Color3.new(255,0,0);
  36. TextUpdate2.TextColor3=Color3.new(255,255,255);
  37. TextUpdate2.Font='SciFi';
  38. TextUpdate2.TextStrokeTransparency=0.5;
  39. TextUpdate2.BackgroundTransparency=1;
  40.  
  41. TextUpdate3=Instance.new('TextLabel',UpdateFrame);
  42. TextUpdate3.Text='-Wunderwaffle soon next update';
  43. TextUpdate3.Size = UDim2.new(1, 0, 0, 50);
  44. TextUpdate3.Position = UDim2.new(0, 0, 0.5, 0);
  45. TextUpdate3.TextSize=26
  46. TextUpdate3.TextStrokeColor3=Color3.new(255,0,0);
  47. TextUpdate3.TextColor3=Color3.new(255,255,255);
  48. TextUpdate3.Font='SciFi';
  49. TextUpdate3.TextStrokeTransparency=0.5;
  50. TextUpdate3.BackgroundTransparency=1;
  51.  
  52. TextUpdate4=Instance.new('TextLabel',UpdateFrame);
  53. TextUpdate4.Text='-Added RayGun Giver';
  54. TextUpdate4.Size = UDim2.new(1, 0, 0, 50);
  55. TextUpdate4.Position = UDim2.new(0, 0, 0.7, 0);
  56. TextUpdate4.TextSize=26
  57. TextUpdate4.TextStrokeColor3=Color3.new(255,0,0);
  58. TextUpdate4.TextColor3=Color3.new(255,255,255);
  59. TextUpdate4.Font='SciFi';
  60. TextUpdate4.TextStrokeTransparency=0.5;
  61. TextUpdate4.BackgroundTransparency=1;
  62.  
  63. TextUpdate1.Visible=false;
  64. TextUpdate2.Visible=false;
  65. TextUpdate3.Visible=false;
  66. TextUpdate4.Visible=false;
  67. wait(0.3)
  68. UpdateFrame:TweenSize(UDim2.new(0,530,0,340),"In","Quad",1,true)
  69. wait(1)
  70. TextUpdate1.Visible=true;
  71. TextUpdate2.Visible=true;
  72. TextUpdate3.Visible=true;
  73. TextUpdate4.Visible=true;
  74. wait(6)
  75. TextUpdate4.Visible=false;
  76. wait(0.5)
  77. TextUpdate3.Visible=false;
  78. wait(0.5)
  79. TextUpdate2.Visible=false;
  80.  
  81. Username=Instance.new('TextBox',UpdateFrame);
  82. Username.Text='Username';
  83. Username.Size = UDim2.new(0, 200, 0, 50);
  84. Username.Position = UDim2.new(0, 160, 0.3, 0);
  85. Username.BackgroundColor3=Color3.new(0,0,0)
  86. Username.TextSize=26
  87. Username.BorderColor3=Color3.new(255,0,0)
  88. Username.BorderSizePixel=2
  89. Username.TextStrokeColor3=Color3.new(255,0,0);
  90. Username.TextColor3=Color3.new(255,255,255);
  91. Username.Font='SciFi';
  92. Username.TextStrokeTransparency=0.5;
  93. Username.BackgroundTransparency=0.7;
  94.  
  95. Password=Instance.new('TextBox',UpdateFrame);
  96. Password.Text='Password';
  97. Password.Size = UDim2.new(0, 200, 0, 50);
  98. Password.Position = UDim2.new(0, 160, 0.5, 0);
  99. Password.BackgroundColor3=Color3.new(0,0,0)
  100. Password.TextSize=26
  101. Password.BorderColor3=Color3.new(255,0,0)
  102. Password.BorderSizePixel=2
  103. Password.TextStrokeColor3=Color3.new(255,0,0);
  104. Password.TextColor3=Color3.new(255,255,255);
  105. Password.Font='SciFi';
  106. Password.TextStrokeTransparency=0.5;
  107. Password.BackgroundTransparency=0.7
  108.  
  109. Submit=Instance.new('TextButton',UpdateFrame);
  110. Submit.Text='Login';
  111. Submit.Size = UDim2.new(0, 200, 0, 50);
  112. Submit.Position = UDim2.new(0, 160, 0.8, 0);
  113. Submit.BackgroundColor3=Color3.new(0,0,0)
  114. Submit.TextSize=26
  115. Submit.BorderColor3=Color3.new(255,0,0)
  116. Submit.BorderSizePixel=2
  117. Submit.TextStrokeColor3=Color3.new(255,0,0);
  118. Submit.TextColor3=Color3.new(255,255,255);
  119. Submit.Font='SciFi';
  120. Submit.TextStrokeTransparency=0.5;
  121. Submit.BackgroundTransparency=0.7
  122.  
  123. --Mod Menu
  124. local modframe = Instance.new("Frame")
  125. modframe.Parent = GUI
  126. modframe.Position = UDim2.new(0.72, 0, 0, 0)
  127. modframe.Size = UDim2.new(0, 270, 1, 0)
  128. modframe.BackgroundColor3 = Color3.new(0,0,0)
  129. modframe.BorderColor3 = Color3.new(255,0,0)
  130. modframe.BackgroundTransparency = 0.6
  131. modframe.Visible = false
  132.  
  133. Title=Instance.new('TextLabel',modframe);
  134. Title.Text='CH34T MENU V.20';
  135. Title.Size = UDim2.new(1, 0, 0, 130);
  136. Title.Position = UDim2.new(0, 0, 0, 0);
  137. Title.TextScaled=true;
  138. Title.TextStrokeColor3=Color3.new(255,0,0);
  139. Title.TextColor3=Color3.new(255,255,255);
  140. Title.Font='SciFi';
  141. Title.TextStrokeTransparency=0.5;
  142. Title.BackgroundTransparency=1;
  143.  
  144. Welcome=Instance.new('TextLabel',modframe);
  145. Welcome.Text='';
  146. Welcome.Size = UDim2.new(1, 0, 0, 50);
  147. Welcome.Position = UDim2.new(0, 0, 0.2, 0);
  148. Welcome.TextScaled=false;
  149. Welcome.TextSize=26
  150. Welcome.TextStrokeColor3=Color3.new(255,0,0);
  151. Welcome.TextColor3=Color3.new(255,255,255);
  152. Welcome.Font='SciFi';
  153. Welcome.TextStrokeTransparency=0.5;
  154. Welcome.BackgroundTransparency=1;
  155.  
  156. speedhack=Instance.new('ImageButton', modframe)
  157. speedhack.Size = UDim2.new(1, 0, 0, 60)
  158. speedhack.Position = UDim2.new(0, 0, 0.3, 0)
  159. speedhack.BackgroundTransparency=1
  160. speedhack.Image='rbxassetid://56985860'
  161. speedhack.ImageColor3=Color3.new(0,0,0)
  162. speedhack.ImageTransparency=0.5
  163. speedhack.Visible=true
  164. speedhack.Modal=true
  165.  
  166. speedhacktext=Instance.new('TextLabel',speedhack);
  167. speedhacktext.Text='Speed Hack : OFF';
  168. speedhacktext.Size = UDim2.new(1, 0, 1, 0);
  169. speedhacktext.Position = UDim2.new(0, 0, 0, 0);
  170. speedhacktext.TextScaled=false;
  171. speedhacktext.TextSize=30
  172. speedhacktext.TextStrokeColor3=Color3.new(255,0,0);
  173. speedhacktext.TextColor3=Color3.new(255,255,255);
  174. speedhacktext.Font='SciFi';
  175. speedhacktext.TextStrokeTransparency=0.5;
  176. speedhacktext.BackgroundTransparency=1;
  177.  
  178. infinitemoney=Instance.new('ImageButton', modframe)
  179. infinitemoney.Size = UDim2.new(1, 0, 0, 60)
  180. infinitemoney.Position = UDim2.new(0, 0, 0.4, 0)
  181. infinitemoney.BackgroundTransparency=1
  182. infinitemoney.Image='rbxassetid://56985860'
  183. infinitemoney.ImageColor3=Color3.new(0,0,0)
  184. infinitemoney.ImageTransparency=0.5
  185. infinitemoney.Visible=true
  186.  
  187. infinitemoneytext=Instance.new('TextLabel',infinitemoney);
  188. infinitemoneytext.Text='Infinite Money : OFF';
  189. infinitemoneytext.Size = UDim2.new(1, 0, 1, 0);
  190. infinitemoneytext.Position = UDim2.new(0, 0, 0, 0);
  191. infinitemoneytext.TextScaled=false;
  192. infinitemoneytext.TextSize=30
  193. infinitemoneytext.TextStrokeColor3=Color3.new(255,0,0);
  194. infinitemoneytext.TextColor3=Color3.new(255,255,255);
  195. infinitemoneytext.Font='SciFi';
  196. infinitemoneytext.TextStrokeTransparency=0.5;
  197. infinitemoneytext.BackgroundTransparency=1;
  198.  
  199. godmode=Instance.new('ImageButton', modframe)
  200. godmode.Size = UDim2.new(1, 0, 0, 60)
  201. godmode.Position = UDim2.new(0, 0, 0.5, 0)
  202. godmode.BackgroundTransparency=1
  203. godmode.Image='rbxassetid://56985860'
  204. godmode.ImageColor3=Color3.new(0,0,0)
  205. godmode.ImageTransparency=0.5
  206. godmode.Visible=true
  207.  
  208. godmodetext=Instance.new('TextLabel',godmode);
  209. godmodetext.Text='LoopHealth : OFF';
  210. godmodetext.Size = UDim2.new(1, 0, 1, 0);
  211. godmodetext.Position = UDim2.new(0, 0, 0, 0);
  212. godmodetext.TextScaled=false;
  213. godmodetext.TextSize=30
  214. godmodetext.TextStrokeColor3=Color3.new(255,0,0);
  215. godmodetext.TextColor3=Color3.new(255,255,255);
  216. godmodetext.Font='SciFi';
  217. godmodetext.TextStrokeTransparency=0.5;
  218. godmodetext.BackgroundTransparency=1;
  219.  
  220. raygun=Instance.new('ImageButton', modframe)
  221. raygun.Size = UDim2.new(1, 0, 0, 60)
  222. raygun.Position = UDim2.new(0, 0, 0.6, 0)
  223. raygun.BackgroundTransparency=1
  224. raygun.Image='rbxassetid://56985860'
  225. raygun.ImageColor3=Color3.new(0,0,0)
  226. raygun.ImageTransparency=0.5
  227. raygun.Visible=true
  228.  
  229. rayguntext=Instance.new('TextLabel',raygun);
  230. rayguntext.Text='Give RayGun';
  231. rayguntext.Size = UDim2.new(1, 0, 1, 0);
  232. rayguntext.Position = UDim2.new(0, 0, 0, 0);
  233. rayguntext.TextScaled=false;
  234. rayguntext.TextSize=30
  235. rayguntext.TextStrokeColor3=Color3.new(255,0,0);
  236. rayguntext.TextColor3=Color3.new(255,255,255);
  237. rayguntext.Font='SciFi';
  238. rayguntext.TextStrokeTransparency=0.5;
  239. rayguntext.BackgroundTransparency=1;
  240.  
  241. function onButtonClicked()
  242. game.Lighting.Guns['Ray_Gun']:Clone().Parent = game.Players.LocalPlayer.Backpack
  243. end
  244. raygun.MouseButton1Down:connect(onButtonClicked)
  245.  
  246. godded=false
  247. function onButtonClicked()
  248. if godded == false then
  249. godded=true
  250. godmodetext.Text='LoopHealth : ON'
  251. while wait() do
  252. if godded==true then
  253. game.Players.LocalPlayer.Character.Humanoid.Health=100
  254. else
  255. print('not godded')
  256. end
  257. end
  258. elseif godded == true then
  259. godded=false
  260. godmodetext.Text='LoopHealth : OFF'
  261. end
  262. end
  263. godmode.MouseButton1Down:connect(onButtonClicked)
  264. speedhacking=false
  265. function onButtonClicked()
  266. if game.Players.LocalPlayer.Character.Humanoid.WalkSpeed==16 then
  267. speedhacking=true
  268. speedhacktext.Text='Speed Hack : ON'
  269. while wait() do
  270. if speedhacking==true then
  271. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=42
  272. else
  273. print('not speed hacking')
  274. end end
  275. elseif game.Players.LocalPlayer.Character.Humanoid.WalkSpeed==42 then
  276. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=16
  277. speedhacktext.Text='Speed Hack : OFF'
  278. speedhacking=false
  279. end
  280. end
  281. speedhack.MouseButton1Down:connect(onButtonClicked)
  282.  
  283. function onButtonClicked()
  284. if game.Players.LocalPlayer.PlayerGui.AntiCheatScript.Disabled==false then
  285. game.Players.LocalPlayer.PlayerGui.AntiCheatScript.Disabled=true
  286. game.Players.LocalPlayer.leaderstats.Money.Value=1000000000
  287. infinitemoneytext.Text='Infinite Money : ON'
  288. elseif game.Players.LocalPlayer.PlayerGui.AntiCheatScript.Disabled==true then
  289. game.Players.LocalPlayer.PlayerGui.AntiCheatScript.Disabled=false
  290. infinitemoneytext.Text='Infinite Money : OFF'
  291. end
  292. end
  293. infinitemoney.MouseButton1Down:connect(onButtonClicked)
  294. --Whitelist
  295. function onButtonClicked()
  296. if Username.Text=='Heven' and Password.Text=='tron1234' then
  297. UpdateFrame.Visible=false
  298. modframe.Visible=true
  299. Welcome.Text='Welcome, Heven !'
  300. modded=true
  301. elseif Username.Text=='Unknown' and Password.Text=='1987' then
  302. UpdateFrame.Visible=false
  303. modframe.Visible=true
  304. Welcome.Text='Welcome, Unknown !'
  305. modded=true
  306. elseif Username.Text=='CityBeast' and Password.Text=='AnimeGoku' then
  307. UpdateFrame.Visible=false
  308. modframe.Visible=true
  309. Welcome.Text='Welcome, CityBeast !'
  310. modded=true
  311. end end
  312.  
  313. Submit.MouseButton1Down:connect(onButtonClicked)
  314.  
  315. Mouse.KeyDown:connect(function(Key)
  316. if(Key:lower() == "q") then
  317. if modded == true then
  318. if modframe.Visible == false then
  319. modframe.Visible = true
  320. Open:Play()
  321. modframe.BackgroundTransparency = 0.9
  322. wait(0.001)
  323. modframe.BackgroundTransparency = 0.8
  324. wait(0.001)
  325. modframe.BackgroundTransparency = 0.7
  326. wait(0.001)
  327. modframe.BackgroundTransparency = 0.6
  328. wait(0.001)
  329. elseif modframe.Visible == true then
  330. modframe.BackgroundTransparency = 0.6
  331. wait(0.001)
  332. modframe.BackgroundTransparency = 0.7
  333. wait(0.001)
  334. modframe.BackgroundTransparency = 0.8
  335. wait(0.001)
  336. modframe.BackgroundTransparency = 0.9
  337. wait(0.001)
  338. modframe.BackgroundTransparency = 1
  339. wait(0.001)
  340. modframe.Visible = false
  341. end end
  342. end end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement