Advertisement
Guest User

enjoy dad

a guest
Jan 31st, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.73 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local MainUI = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local FlyR6 = Instance.new("TextButton")
  7. local Noclip = Instance.new("TextButton")
  8. local Speed = Instance.new("TextButton")
  9. local HatSpin = Instance.new("TextButton")
  10. local FasterSpeed = Instance.new("TextButton")
  11. local BombVest = Instance.new("TextButton")
  12. local Fling = Instance.new("TextButton")
  13. local ChatLogs = Instance.new("TextButton")
  14. local ResetSpeed = Instance.new("TextButton")
  15. local Fix = Instance.new("TextButton")
  16. local ClickTP = Instance.new("TextButton")
  17. local Kill = Instance.new("TextButton")
  18. local FlyR15 = Instance.new("TextButton")
  19. local JumpPower = Instance.new("TextButton")
  20. local DeathGun = Instance.new("TextButton")
  21. local Credit = Instance.new("TextLabel")
  22. local Info = Instance.new("TextLabel")
  23. local Lock = Instance.new("Frame")
  24. local Enter = Instance.new("TextButton")
  25. local Credit_2 = Instance.new("TextLabel")
  26. local Username = Instance.new("TextBox")
  27. local Password = Instance.new("TextBox")
  28. local Title = Instance.new("TextLabel")
  29. local Context = Instance.new("TextLabel")
  30. --Properties:
  31. MainUI.Name = "MainUI"
  32. MainUI.Parent = game.CoreGui
  33. MainUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  34.  
  35. Main.Name = "Main"
  36. Main.Parent = MainUI
  37. Main.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  38. Main.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  39. Main.BorderSizePixel = 0
  40. Main.Position = UDim2.new(0.0272952877, 0, 0.509153306, 0)
  41. Main.Size = UDim2.new(0, 486, 0, 375)
  42. Main.Visible = false
  43.  
  44. FlyR6.Name = "Fly [R6]"
  45. FlyR6.Parent = Main
  46. FlyR6.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  47. FlyR6.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  48. FlyR6.BorderSizePixel = 0
  49. FlyR6.Position = UDim2.new(0.0473251007, 0, 0.0320000015, 0)
  50. FlyR6.Size = UDim2.new(0, 141, 0, 50)
  51. FlyR6.Font = Enum.Font.SourceSansSemibold
  52. FlyR6.Text = "FLY [R6]"
  53. FlyR6.TextColor3 = Color3.new(1, 1, 1)
  54. FlyR6.TextSize = 25
  55. FlyR6.MouseButton1Down:connect(function()
  56. print 'Fly Activated, R6 ONLY!'
  57. repeat wait()
  58. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  59. local mouse = game.Players.LocalPlayer:GetMouse()
  60. repeat wait() until mouse
  61. local plr = game.Players.LocalPlayer
  62. local torso = plr.Character.Torso
  63. local flying = true
  64. local deb = true
  65. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  66. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  67. local maxspeed = 50
  68. local speed = 0
  69.  
  70. function Fly()
  71. local bg = Instance.new("BodyGyro", torso)
  72. bg.P = 9e4
  73. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  74. bg.cframe = torso.CFrame
  75. local bv = Instance.new("BodyVelocity", torso)
  76. bv.velocity = Vector3.new(0,0.1,0)
  77. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  78. repeat wait()
  79. plr.Character.Humanoid.PlatformStand = true
  80. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  81. speed = speed+.5+(speed/maxspeed)
  82. if speed > maxspeed then
  83. speed = maxspeed
  84. end
  85. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  86. speed = speed-1
  87. if speed < 0 then
  88. speed = 0
  89. end
  90. end
  91. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  92. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  93. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  94. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  95. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  96. else
  97. bv.velocity = Vector3.new(0,0.1,0)
  98. end
  99. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  100. until not flying
  101. ctrl = {f = 0, b = 0, l = 0, r = 0}
  102. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  103. speed = 0
  104. bg:Destroy()
  105. bv:Destroy()
  106. plr.Character.Humanoid.PlatformStand = false
  107. end
  108. mouse.KeyDown:connect(function(key)
  109. if key:lower() == "e" then
  110. if flying then flying = false
  111. else
  112. flying = true
  113. Fly()
  114. end
  115. elseif key:lower() == "w" then
  116. ctrl.f = 1
  117. elseif key:lower() == "s" then
  118. ctrl.b = -1
  119. elseif key:lower() == "a" then
  120. ctrl.l = -1
  121. elseif key:lower() == "d" then
  122. ctrl.r = 1
  123. end
  124. end)
  125. mouse.KeyUp:connect(function(key)
  126. if key:lower() == "w" then
  127. ctrl.f = 0
  128. elseif key:lower() == "s" then
  129. ctrl.b = 0
  130. elseif key:lower() == "a" then
  131. ctrl.l = 0
  132. elseif key:lower() == "d" then
  133. ctrl.r = 0
  134. end
  135. end)
  136. Fly()
  137. end)
  138.  
  139.  
  140. Noclip.Name = "Noclip"
  141. Noclip.Parent = Main
  142. Noclip.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  143. Noclip.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  144. Noclip.BorderSizePixel = 0
  145. Noclip.Position = UDim2.new(0.0473251007, 0, 0.184, 0)
  146. Noclip.Size = UDim2.new(0, 141, 0, 50)
  147. Noclip.Font = Enum.Font.SourceSansSemibold
  148. Noclip.Text = "NOCLIP"
  149. Noclip.TextColor3 = Color3.new(1, 1, 1)
  150. Noclip.TextSize = 25
  151. Noclip.MouseButton1Down:connect(function()
  152. print 'Noclip Activated, R6 ONLY!'
  153. local noclip = true -- Gets if you want the noclip
  154. char = game.Players.LocalPlayer.Character -- Gets your player
  155. while true do -- Make sure someone is in game
  156. if noclip == true then
  157. for _,v in pairs(char:children()) do
  158. pcall(function()
  159. if v.className == "Part" then
  160. v.CanCollide = false
  161. end
  162. end)
  163. end
  164. end
  165. game:service("RunService").Stepped:wait()
  166. end
  167. end)
  168. Speed.Name = "Speed"
  169. Speed.Parent = Main
  170. Speed.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  171. Speed.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  172. Speed.BorderSizePixel = 0
  173. Speed.Position = UDim2.new(0.0473251007, 0, 0.338666648, 0)
  174. Speed.Size = UDim2.new(0, 141, 0, 50)
  175. Speed.Font = Enum.Font.SourceSansSemibold
  176. Speed.Text = "SPEED "
  177. Speed.TextColor3 = Color3.new(1, 1, 1)
  178. Speed.TextSize = 25
  179. Speed.MouseButton1Down:connect(function()
  180. print 'Speed Activated!'
  181. down = false
  182. velocity = Instance.new("BodyVelocity")
  183. velocity.maxForce = Vector3.new(100000, 0, 100000)
  184. ---vv Use that to change the speed v
  185. local speed = 100
  186. gyro = Instance.new("BodyGyro")
  187. gyro.maxTorque = Vector3.new(100000, 0, 100000)
  188.  
  189. local hum = game.Players.LocalPlayer.Character.Humanoid
  190.  
  191. function onButton1Down(mouse)
  192. down = true
  193. velocity.Parent = game.Players.LocalPlayer.Character.UpperTorso
  194. velocity.velocity = (hum.MoveDirection) * speed
  195. gyro.Parent = game.Players.LocalPlayer.Character.UpperTorso
  196. while down do
  197. if not down then break end
  198. velocity.velocity = (hum.MoveDirection) * speed
  199. local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5
  200. gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  201. wait(0.1)
  202. end
  203. end
  204.  
  205. function onButton1Up(mouse)
  206. velocity.Parent = nil
  207. gyro.Parent = nil
  208. down = false
  209. end
  210. --To Change the key in those 2 lines, replace the "q" with your desired key
  211. function onSelected(mouse)
  212. mouse.KeyDown:connect(function(k) if k:lower()=="q"then onButton1Down(mouse)end end)
  213. mouse.KeyUp:connect(function(k) if k:lower()=="q"then onButton1Up(mouse)end end)
  214. end
  215.  
  216. onSelected(game.Players.LocalPlayer:GetMouse())
  217.  
  218. ---
  219.  
  220. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  221. end)
  222.  
  223.  
  224. HatSpin.Name = "Hat Spin"
  225. HatSpin.Parent = Main
  226. HatSpin.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  227. HatSpin.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  228. HatSpin.BorderSizePixel = 0
  229. HatSpin.Position = UDim2.new(0.0473251007, 0, 0.490666658, 0)
  230. HatSpin.Size = UDim2.new(0, 141, 0, 50)
  231. HatSpin.Font = Enum.Font.SourceSansSemibold
  232. HatSpin.Text = "HAT SPIN"
  233. HatSpin.TextColor3 = Color3.new(1, 1, 1)
  234. HatSpin.TextSize = 25
  235. HatSpin.MouseButton1Down:connect(function()
  236. print 'HatSpin Activated!'
  237. local obese = game:GetService('Players')
  238. for i,v in pairs(obese.LocalPlayer.Character:GetChildren()) do
  239. if v.ClassName == "Accessory" then
  240. local stg = v.Handle:FindFirstChildOfClass("BodyForce")
  241. if stg == nil then
  242. local a = Instance.new("BodyPosition")
  243. local b = Instance.new("BodyAngularVelocity")
  244. a.Parent = v.Handle
  245. b.Parent = v.Handle
  246. v.Handle.AccessoryWeld:Destroy()
  247. b.AngularVelocity = Vector3.new(0,100,0)
  248. b.MaxTorque = Vector3.new(0,200,0)
  249. a.P = 30000
  250. a.D = 50
  251. game:GetService('RunService').Stepped:connect(function()
  252. a.Position = obese.LocalPlayer.Character.Head.Position
  253. end)
  254. end
  255. end
  256. end
  257. end)
  258.  
  259. FasterSpeed.Name = "Faster Speed"
  260. FasterSpeed.Parent = Main
  261. FasterSpeed.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  262. FasterSpeed.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  263. FasterSpeed.BorderSizePixel = 0
  264. FasterSpeed.Position = UDim2.new(0.353909463, 0, 0.338666648, 0)
  265. FasterSpeed.Size = UDim2.new(0, 141, 0, 50)
  266. FasterSpeed.Font = Enum.Font.SourceSansSemibold
  267. FasterSpeed.Text = "FASTER SPEED"
  268. FasterSpeed.TextColor3 = Color3.new(1, 1, 1)
  269. FasterSpeed.TextSize = 25
  270. FasterSpeed.MouseButton1Down:connect(function()
  271. print 'FasterSpeed Activated!'
  272. down = false
  273. velocity = Instance.new("BodyVelocity")
  274. velocity.maxForce = Vector3.new(100000, 0, 100000)
  275. ---vv Use that to change the speed v
  276. local speed = 100
  277. gyro = Instance.new("BodyGyro")
  278. gyro.maxTorque = Vector3.new(100000, 0, 100000)
  279.  
  280. local hum = game.Players.LocalPlayer.Character.Humanoid
  281.  
  282. function onButton1Down(mouse)
  283. down = true
  284. velocity.Parent = game.Players.LocalPlayer.Character.UpperTorso
  285. velocity.velocity = (hum.MoveDirection) * speed
  286. gyro.Parent = game.Players.LocalPlayer.Character.UpperTorso
  287. while down do
  288. if not down then break end
  289. velocity.velocity = (hum.MoveDirection) * speed
  290. local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5
  291. gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  292. wait(0.1)
  293. end
  294. end
  295.  
  296. function onButton1Up(mouse)
  297. velocity.Parent = nil
  298. gyro.Parent = nil
  299. down = false
  300. end
  301. --To Change the key in those 2 lines, replace the "q" with your desired key
  302. function onSelected(mouse)
  303. mouse.KeyDown:connect(function(k) if k:lower()=="q"then onButton1Down(mouse)end end)
  304. mouse.KeyUp:connect(function(k) if k:lower()=="q"then onButton1Up(mouse)end end)
  305. end
  306.  
  307. onSelected(game.Players.LocalPlayer:GetMouse())
  308.  
  309. ---
  310.  
  311. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 250
  312. end)
  313.  
  314. BombVest.Name = "Bomb Vest"
  315. BombVest.Parent = Main
  316. BombVest.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  317. BombVest.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  318. BombVest.BorderSizePixel = 0
  319. BombVest.Position = UDim2.new(0.353909463, 0, 0.0320000015, 0)
  320. BombVest.Size = UDim2.new(0, 141, 0, 50)
  321. BombVest.Font = Enum.Font.SourceSansSemibold
  322. BombVest.Text = "Bomb Vest"
  323. BombVest.TextColor3 = Color3.new(1, 1, 1)
  324. BombVest.TextSize = 25
  325. BombVest.MouseButton1Down:connect(function()
  326. print 'BombVest Activated, R6 ONLY!'
  327. local Me = game:GetService("Players").LocalPlayer --You cannot use this on someone else. srry
  328. local Char = Me.Character
  329. local Torso = Char.Torso
  330. local TickWait = 1
  331. local Color = "Medium stone gray"
  332. local Dead = false
  333.  
  334. local Tool = Instance.new("HopperBin", Me.Backpack)
  335. Tool.Name = "Bomb Vest"
  336.  
  337. local Position = Vector3.new(0,100,0)
  338. function NewPart(Parent)
  339. local Part = Instance.new("Part", Parent)
  340. Part.CanCollide = false
  341. Part.FormFactor = "Custom"
  342. Part.Position = Position
  343. Part.TopSurface = "Smooth"
  344. Part.BottomSurface = "Smooth"
  345. Part.BrickColor = BrickColor.new(Color)
  346. Position = Position + Vector3.new(0,Part.Size.Y + 10,0)
  347. return Part
  348. end
  349.  
  350. local Model = Char:FindFirstChild("Bomb")
  351. if Model then Model:Destroy() end
  352.  
  353. Model = Instance.new("Model", Char)
  354. Model.Name = "Bomb"
  355.  
  356. local Belt = NewPart(Model)
  357. Belt.Size = Vector3.new(2.2,0.5,1.2)
  358. local Weld = Instance.new("Weld", Belt)
  359. Weld.Part0 = Belt
  360. Weld.Part1 = Torso
  361. Weld.C0 = CFrame.new(0,1.1,0)
  362. local Light = Instance.new("PointLight", Belt)
  363. Light.Range = 15
  364. Light.Brightness = 5
  365. Light.Color = Color3.new(1,0,0)
  366. local Beep = Instance.new("Sound", Belt)
  367. Beep.SoundId = "http://www.roblox.com/asset/?id=188588790"
  368. local ExplodeSound = Instance.new("Sound", Belt)
  369. ExplodeSound.SoundId = "http://www.roblox.com/asset/?id="..(tonumber((math.ceil(1776.66^2)+17).."."..string.rep("36",3))*77)+0.00003 --144507765
  370. ExplodeSound.Pitch = 2.8
  371. ExplodeSound.Volume = 3
  372.  
  373. local Back = NewPart(Model)
  374. Back.Size = Vector3.new(1.5,1.5,0.5)
  375. local Weld = Instance.new("Weld", Back)
  376. Weld.Part0 = Back
  377. Weld.Part1 = Torso
  378. Weld.C0 = CFrame.new(0,0.1,-0.75)
  379.  
  380. local StrapLeft = NewPart(Model)
  381. StrapLeft.Size = Vector3.new(0.2,0.5,1.6)
  382. local Weld = Instance.new("Weld", StrapLeft)
  383. Weld.Part0 = StrapLeft
  384. Weld.Part1 = Torso
  385. Weld.C0 = CFrame.new(0.65,-0.9,-0.2)
  386.  
  387. local BuckleLeft = NewPart(Model)
  388. BuckleLeft.Size = Vector3.new(0.2,1.5,0.2)
  389. local Weld = Instance.new("Weld", BuckleLeft)
  390. Weld.Part0 = BuckleLeft
  391. Weld.Part1 = Torso
  392. Weld.C0 = CFrame.new(0.65,0.1,0.5)
  393.  
  394. local StrapRight = NewPart(Model)
  395. StrapRight.Size = Vector3.new(0.2,0.5,1.6)
  396. local Weld = Instance.new("Weld", StrapRight)
  397. Weld.Part0 = StrapRight
  398. Weld.Part1 = Torso
  399. Weld.C0 = CFrame.new(-0.65,-0.9,-0.2)
  400.  
  401. local BuckleRight = NewPart(Model)
  402. BuckleRight.Size = Vector3.new(0.2,1.5,0.2)
  403. local Weld = Instance.new("Weld", BuckleRight)
  404. Weld.Part0 = BuckleRight
  405. Weld.Part1 = Torso
  406. Weld.C0 = CFrame.new(-0.65,0.1,0.5)
  407.  
  408. Tool.Selected:connect(function(Mouse)
  409. TickWait = 0.3
  410. Mouse.Icon = "http://www.roblox.com/asset/?id=9109985"
  411.  
  412. Mouse.Button1Down:connect(function()
  413. if Dead == false then
  414. Dead = true
  415. ExplodeSound:Play()
  416. wait(1.4)
  417. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('meme', '8', '1527622')
  418. lp = game:GetService'Players'.LocalPlayer
  419. hat = lp.Character:WaitForChild'meme'
  420. hat.Handle.Transparency=1
  421. hat.Handle.Mesh:Remove()
  422. end
  423. end)
  424. end)
  425.  
  426. Tool.Deselected:connect(function()
  427. TickWait = 1
  428. end)
  429.  
  430. coroutine.wrap(function()
  431. repeat
  432. wait(TickWait)
  433. Light.Enabled = not Light.Enabled
  434. Beep:Play()
  435. until Dead == true
  436. end)()
  437. local grabknife = h
  438. function kill(plrtokill)
  439. --boom--
  440. assets = {540034631, 178993946, 461493477, 110288809}
  441. me = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid'
  442. for i,v in pairs(me.Parent:GetChildren()) do
  443. if v:IsA'Accoutrement' then v.Parent = nil end
  444. end
  445. for i,v in pairs(assets) do
  446. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('xdd', tostring(game:GetService'MarketplaceService':GetProductInfo(v).AssetTypeId), v)
  447. end
  448. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('boom', '8', '1527622')
  449. game.Players.LocalPlayer.Character.boom.BootScript.Parent=workspace[plrtokill]
  450. print(workspace[plrtokill] .. " has been killed")
  451.  
  452. end
  453.  
  454. game:GetService'RunService'.Stepped:wait()
  455. grabknife.Parent = plr.Character
  456. for i = 1,3 do
  457. local lol = lp:FindFirstChildOfClass'Backpack':FindFirstChildOfClass'HopperBin'
  458. if lol:FindFirstChild'LocalScript' then lol:Destroy() end
  459. end
  460. end)
  461.  
  462. Fling.Name = "Fling"
  463. Fling.Parent = Main
  464. Fling.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  465. Fling.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  466. Fling.BorderSizePixel = 0
  467. Fling.Position = UDim2.new(0.353909463, 0, 0.184, 0)
  468. Fling.Size = UDim2.new(0, 141, 0, 50)
  469. Fling.Font = Enum.Font.SourceSansSemibold
  470. Fling.Text = "FLING"
  471. Fling.TextColor3 = Color3.new(1, 1, 1)
  472. Fling.TextSize = 25
  473. Fling.MouseButton1Down:connect(function()
  474. print 'Fling Activated, Coming Soon!'
  475. end)
  476.  
  477. ChatLogs.Name = "Chat Logs"
  478. ChatLogs.Parent = Main
  479. ChatLogs.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  480. ChatLogs.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  481. ChatLogs.BorderSizePixel = 0
  482. ChatLogs.Position = UDim2.new(0.353909463, 0, 0.490666658, 0)
  483. ChatLogs.Size = UDim2.new(0, 141, 0, 50)
  484. ChatLogs.Font = Enum.Font.SourceSansSemibold
  485. ChatLogs.Text = "CHAT LOGS"
  486. ChatLogs.TextColor3 = Color3.new(1, 1, 1)
  487. ChatLogs.TextSize = 25
  488. ChatLogs.MouseButton1Down:connect(function()
  489. print 'ChatLogs Activated, Coming Soon!'
  490. end)
  491.  
  492. ResetSpeed.Name = "Reset Speed"
  493. ResetSpeed.Parent = Main
  494. ResetSpeed.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  495. ResetSpeed.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  496. ResetSpeed.BorderSizePixel = 0
  497. ResetSpeed.Position = UDim2.new(0.660493851, 0, 0.338666648, 0)
  498. ResetSpeed.Size = UDim2.new(0, 141, 0, 50)
  499. ResetSpeed.Font = Enum.Font.SourceSansSemibold
  500. ResetSpeed.Text = "RESET SPEED"
  501. ResetSpeed.TextColor3 = Color3.new(1, 1, 1)
  502. ResetSpeed.TextSize = 25
  503. ResetSpeed.MouseButton1Down:connect(function()
  504. print 'NormalSpeed Activated!'
  505. down = false
  506. velocity = Instance.new("BodyVelocity")
  507. velocity.maxForce = Vector3.new(100000, 0, 100000)
  508. ---vv Use that to change the speed v
  509. local speed = 100
  510. gyro = Instance.new("BodyGyro")
  511. gyro.maxTorque = Vector3.new(100000, 0, 100000)
  512.  
  513. local hum = game.Players.LocalPlayer.Character.Humanoid
  514.  
  515. function onButton1Down(mouse)
  516. down = true
  517. velocity.Parent = game.Players.LocalPlayer.Character.UpperTorso
  518. velocity.velocity = (hum.MoveDirection) * speed
  519. gyro.Parent = game.Players.LocalPlayer.Character.UpperTorso
  520. while down do
  521. if not down then break end
  522. velocity.velocity = (hum.MoveDirection) * speed
  523. local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5
  524. gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  525. wait(0.1)
  526. end
  527. end
  528.  
  529. function onButton1Up(mouse)
  530. velocity.Parent = nil
  531. gyro.Parent = nil
  532. down = false
  533. end
  534. --To Change the key in those 2 lines, replace the "q" with your desired key
  535. function onSelected(mouse)
  536. mouse.KeyDown:connect(function(k) if k:lower()=="q"then onButton1Down(mouse)end end)
  537. mouse.KeyUp:connect(function(k) if k:lower()=="q"then onButton1Up(mouse)end end)
  538. end
  539.  
  540. onSelected(game.Players.LocalPlayer:GetMouse())
  541.  
  542. ---
  543.  
  544. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  545.  
  546. end)
  547.  
  548. Fix.Name = "Fix"
  549. Fix.Parent = Main
  550. Fix.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  551. Fix.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  552. Fix.BorderSizePixel = 0
  553. Fix.Position = UDim2.new(0.660493851, 0, 0.0320000015, 0)
  554. Fix.Size = UDim2.new(0, 141, 0, 50)
  555. Fix.Font = Enum.Font.SourceSansSemibold
  556. Fix.Text = "FIX"
  557. Fix.TextColor3 = Color3.new(1, 1, 1)
  558. Fix.TextSize = 25
  559. Fix.MouseButton1Down:connect(function()
  560. print 'Fix Activated!'
  561. end)
  562.  
  563. ClickTP.Name = "Click TP"
  564. ClickTP.Parent = Main
  565. ClickTP.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  566. ClickTP.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  567. ClickTP.BorderSizePixel = 0
  568. ClickTP.Position = UDim2.new(0.660493851, 0, 0.184, 0)
  569. ClickTP.Size = UDim2.new(0, 141, 0, 50)
  570. ClickTP.Font = Enum.Font.SourceSansSemibold
  571. ClickTP.Text = "CLICK TP"
  572. ClickTP.TextColor3 = Color3.new(1, 1, 1)
  573. ClickTP.TextSize = 25
  574. ClickTP.MouseButton1Down:connect(function()
  575. print 'ClickTP Activated!'
  576. -- Objects
  577.  
  578. local main = Instance.new("ScreenGui")
  579. local main_2 = Instance.new("Frame")
  580. local colors = Instance.new("Frame")
  581. local TextLabel = Instance.new("TextLabel")
  582. local clicktp = Instance.new("TextButton")
  583.  
  584. -- Properties
  585.  
  586. main.Name = "main"
  587. main.Parent = game.CoreGui
  588. main.Active = true
  589. main.Draggable = true
  590.  
  591. main_2.Name = "main"
  592. main_2.Parent = main
  593. main_2.Active = true
  594. main_2.BackgroundColor3 = Color3.new(1, 1, 1)
  595. main_2.BorderSizePixel = 0
  596. main_2.Position = UDim2.new(0.0103675779, 0, 0.689723313, 0)
  597. main_2.Size = UDim2.new(0, 178, 0, 148)
  598.  
  599. colors.Name = "colors"
  600. colors.Parent = main_2
  601. colors.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  602. colors.BorderSizePixel = 0
  603. colors.Size = UDim2.new(0, 178, 0, 27)
  604.  
  605. TextLabel.Parent = colors
  606. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  607. TextLabel.BackgroundTransparency = 5
  608. TextLabel.Position = UDim2.new(0.00155697763, 0, -0.407407403, 0)
  609. TextLabel.Size = UDim2.new(0, 173, 0, 50)
  610. TextLabel.Font = Enum.Font.Highway
  611. TextLabel.Text = "Survivor ClickTP"
  612. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  613. TextLabel.TextSize = 20
  614.  
  615. clicktp.Name = "click-tp"
  616. clicktp.Parent = main_2
  617. clicktp.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  618. clicktp.BorderSizePixel = 0
  619. clicktp.Position = UDim2.new(0.0883788168, 0, 0.265734255, 0)
  620. clicktp.Size = UDim2.new(0, 146, 0, 96)
  621. clicktp.Font = Enum.Font.SourceSans
  622. clicktp.Text = "Click TP"
  623. clicktp.TextColor3 = Color3.new(1, 1, 1)
  624. clicktp.TextSize = 25
  625.  
  626.  
  627. clicktp.MouseButton1Click:connect(function()
  628. mouse = game.Players.LocalPlayer:GetMouse()
  629. tool = Instance.new("Tool")
  630. tool.RequiresHandle = false
  631. tool.Name = "Click Teleport"
  632. tool.Activated:connect(function()
  633. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  634. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  635. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  636. end)
  637. tool.Parent = game.Players.LocalPlayer.Backpack
  638. end)
  639.  
  640. end)
  641.  
  642. Kill.Name = "Kill"
  643. Kill.Parent = Main
  644. Kill.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  645. Kill.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  646. Kill.BorderSizePixel = 0
  647. Kill.Position = UDim2.new(0.660493851, 0, 0.490666658, 0)
  648. Kill.Size = UDim2.new(0, 141, 0, 50)
  649. Kill.Font = Enum.Font.SourceSansSemibold
  650. Kill.Text = "KILL"
  651. Kill.TextColor3 = Color3.new(1, 1, 1)
  652. Kill.TextSize = 25
  653. Kill.MouseButton1Down:connect(function()
  654. print 'Kill Activated, Coming Soon!'
  655. end)
  656.  
  657. FlyR15.Name = "Fly [R15]"
  658. FlyR15.Parent = Main
  659. FlyR15.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  660. FlyR15.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  661. FlyR15.BorderSizePixel = 0
  662. FlyR15.Position = UDim2.new(0.0473251007, 0, 0.64533329, 0)
  663. FlyR15.Size = UDim2.new(0, 141, 0, 50)
  664. FlyR15.Font = Enum.Font.SourceSansSemibold
  665. FlyR15.Text = "FLY [R15]"
  666. FlyR15.TextColor3 = Color3.new(1, 1, 1)
  667. FlyR15.TextSize = 25
  668. FlyR15.MouseButton1Down:connect(function()
  669. print 'FlyR15, Coming Soon!'
  670. end)
  671.  
  672. JumpPower.Name = "Jump Power"
  673. JumpPower.Parent = Main
  674. JumpPower.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  675. JumpPower.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  676. JumpPower.BorderSizePixel = 0
  677. JumpPower.Position = UDim2.new(0.353909463, 0, 0.64533329, 0)
  678. JumpPower.Size = UDim2.new(0, 141, 0, 50)
  679. JumpPower.Font = Enum.Font.SourceSansSemibold
  680. JumpPower.Text = "JUMP POWER"
  681. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  682. JumpPower.TextSize = 25
  683. JumpPower.MouseButton1Down:connect(function()
  684. print 'JumpPower, Coming Soon!'
  685. end)
  686.  
  687. DeathGun.Name = "Death Gun"
  688. DeathGun.Parent = Main
  689. DeathGun.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  690. DeathGun.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  691. DeathGun.BorderSizePixel = 0
  692. DeathGun.Position = UDim2.new(0.660493851, 0, 0.64533329, 0)
  693. DeathGun.Size = UDim2.new(0, 141, 0, 50)
  694. DeathGun.Font = Enum.Font.SourceSansSemibold
  695. DeathGun.Text = "DEATH GUN"
  696. DeathGun.TextColor3 = Color3.new(1, 1, 1)
  697. DeathGun.TextSize = 25
  698. DeathGun.MouseButton1Down:connect(function()
  699. print 'DeathGun, Coming Soon!'
  700. end)
  701.  
  702. Credit.Name = "Credit"
  703. Credit.Parent = Main
  704. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  705. Credit.BackgroundTransparency = 1
  706. Credit.Position = UDim2.new(0.0473251045, 0, 0.808000028, 0)
  707. Credit.Size = UDim2.new(0, 439, 0, 60)
  708. Credit.Font = Enum.Font.SourceSansSemibold
  709. Credit.Text = "UI DESIGNED & SCRIPTED BY CRXUNCHYY"
  710. Credit.TextColor3 = Color3.new(1, 1, 1)
  711. Credit.TextSize = 25
  712.  
  713. Info.Name = "Info"
  714. Info.Parent = Main
  715. Info.BackgroundColor3 = Color3.new(1, 1, 1)
  716. Info.BackgroundTransparency = 1
  717. Info.Position = UDim2.new(0.0473251045, 0, 0.869333386, 0)
  718. Info.Size = UDim2.new(0, 439, 0, 60)
  719. Info.Font = Enum.Font.SourceSansSemibold
  720. Info.Text = "UI VERSION 1.1, UPDATES COMING SOON, UN-TESTED"
  721. Info.TextColor3 = Color3.new(1, 1, 1)
  722. Info.TextSize = 25
  723.  
  724. Lock.Name = "Lock"
  725. Lock.Parent = MainUI
  726. Lock.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  727. Lock.Position = UDim2.new(0.0272952914, 0, 0.509153306, 0)
  728. Lock.Size = UDim2.new(0, 254, 0, 375)
  729.  
  730. Enter.Name = "Enter"
  731. Enter.Parent = Lock
  732. Enter.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  733. Enter.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  734. Enter.BorderSizePixel = 0
  735. Enter.Position = UDim2.new(0.0669291392, 0, 0.64533335, 0)
  736. Enter.Size = UDim2.new(0, 220, 0, 50)
  737. Enter.Font = Enum.Font.SourceSansSemibold
  738. Enter.Text = "ENTER"
  739. Enter.TextColor3 = Color3.new(1, 1, 1)
  740. Enter.TextSize = 25
  741. Enter.MouseButton1Down:connect(function()
  742. Main.Visible = true
  743. Lock.Visible = false
  744. end)
  745.  
  746. Credit_2.Name = "Credit"
  747. Credit_2.Parent = Lock
  748. Credit_2.BackgroundColor3 = Color3.new(1, 1, 1)
  749. Credit_2.BackgroundTransparency = 1
  750. Credit_2.Position = UDim2.new(0.05511811, 0, 0.808000028, 0)
  751. Credit_2.Size = UDim2.new(0, 224, 0, 60)
  752. Credit_2.Font = Enum.Font.SourceSansSemibold
  753. Credit_2.Text = "UI DESIGNED & SCRIPTED BY CRXUNCHYY"
  754. Credit_2.TextColor3 = Color3.new(1, 1, 1)
  755. Credit_2.TextScaled = true
  756. Credit_2.TextSize = 25
  757. Credit_2.TextWrapped = true
  758.  
  759. Username.Name = "Username"
  760. Username.Parent = Lock
  761. Username.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  762. Username.BorderSizePixel = 0
  763. Username.Position = UDim2.new(0.0826771632, 0, 0.229333311, 0)
  764. Username.Size = UDim2.new(0, 211, 0, 50)
  765. Username.Font = Enum.Font.SourceSansSemibold
  766. Username.PlaceholderColor3 = Color3.new(0.988235, 1, 1)
  767. Username.PlaceholderText = "USERNAME"
  768. Username.Text = ""
  769. Username.TextColor3 = Color3.new(0, 0, 0)
  770. Username.TextSize = 25
  771.  
  772. Password.Name = "Password"
  773. Password.Parent = Lock
  774. Password.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  775. Password.BorderSizePixel = 0
  776. Password.Position = UDim2.new(0.0826771632, 0, 0.431999981, 0)
  777. Password.Size = UDim2.new(0, 211, 0, 50)
  778. Password.Font = Enum.Font.SourceSansSemibold
  779. Password.PlaceholderColor3 = Color3.new(0.988235, 1, 1)
  780. Password.PlaceholderText = "PASSWORD"
  781. Password.Text = ""
  782. Password.TextColor3 = Color3.new(1, 1, 1)
  783. Password.TextSize = 25
  784.  
  785. Title.Name = "Title"
  786. Title.Parent = Lock
  787. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  788. Title.BackgroundTransparency = 1
  789. Title.Position = UDim2.new(0.0590551198, 0, 0.00533336401, 0)
  790. Title.Size = UDim2.new(0, 224, 0, 60)
  791. Title.Font = Enum.Font.SourceSansSemibold
  792. Title.Text = "123IFORGOTTHENAME"
  793. Title.TextColor3 = Color3.new(1, 1, 1)
  794. Title.TextScaled = true
  795. Title.TextSize = 25
  796. Title.TextWrapped = true
  797.  
  798. Context.Name = "Context"
  799. Context.Parent = Lock
  800. Context.BackgroundColor3 = Color3.new(1, 1, 1)
  801. Context.BackgroundTransparency = 1
  802. Context.Position = UDim2.new(0.0590551198, 0, 0.069333367, 0)
  803. Context.Size = UDim2.new(0, 224, 0, 60)
  804. Context.Font = Enum.Font.SourceSansSemibold
  805. Context.Text = "Have fun!"
  806. Context.TextColor3 = Color3.new(1, 1, 1)
  807. Context.TextSize = 25
  808. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement