Advertisement
kyanopro

sona nerf fps

Jan 19th, 2020
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.09 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  2.  
  3. local rage = library:CreateWindow({
  4. text = "Rage"
  5. })
  6. local visuals = library:CreateWindow({
  7. text = "Visuals"
  8. })
  9.  
  10. local example = library:CreateWindow({
  11. text = "Misc"
  12. })
  13. local Zombie = library:CreateWindow({
  14. text = "Zombies"
  15. })
  16.  
  17.  
  18. local credits = library:CreateWindow({text='Credits'})
  19. credits:AddLabel("Credits\nwally: UI\nKMG#0305 : Scripts ")
  20.  
  21. example:AddBox("WalkSpeed", function(object, focus)
  22. if focus then
  23. _G.HackedWalkSpeed = tonumber(object.Text) or 16
  24.  
  25. local Plrs = game:GetService("Players")
  26.  
  27. local MyPlr = Plrs.LocalPlayer
  28. local MyChar = MyPlr.Character
  29.  
  30. if MyChar then
  31. local Hum = MyChar.Humanoid
  32. Hum.Changed:connect(function()
  33. Hum.WalkSpeed = _G.HackedWalkSpeed
  34. end)
  35. Hum.WalkSpeed = _G.HackedWalkSpeed
  36. end
  37.  
  38.  
  39. MyPlr.CharacterAdded:connect(function(Char)
  40. MyChar = Char
  41. repeat wait() until Char:FindFirstChild("Humanoid")
  42. local Hum = Char.Humanoid
  43. Hum.Changed:connect(function()
  44. Hum.WalkSpeed = _G.HackedWalkSpeed
  45. end)
  46. Hum.WalkSpeed = _G.HackedWalkSpeed
  47. end)
  48. end
  49. end)
  50.  
  51.  
  52.  
  53.  
  54. example:AddButton("Inf Cash", function()
  55. local A_1 = "sajvfe"
  56. local A_2 = "cash"
  57. local A_3 = math.huge
  58. local Event = game:GetService("ReplicatedStorage").Data
  59. Event:InvokeServer(A_1, A_2, A_3)
  60. wait(3)
  61. game.Players.LocalPlayer:Kick("Rejoin For Inf Cash")
  62.  
  63.  
  64.  
  65. end)
  66. example:AddButton("Big Hitbox", function()
  67. while true do
  68. wait(0.6)
  69. local Player = game:GetService("Players").LocalPlayer
  70.  
  71. for i,v in pairs (game:GetService("Players"):GetChildren()) do
  72. if v.TeamColor ~= Player.TeamColor and v.Name ~= Player.Name then
  73. v.Character.HumanoidRootPart.Size = Vector3.new(10,10,10)
  74. v.Character.HumanoidRootPart.Material = "Glass"
  75. v.Character.HumanoidRootPart.Color = Color3.new(math.random(), math.random(), math.random())
  76. v.Character.HumanoidRootPart.Transparency = 0.5
  77. v.Character.HumanoidRootPart.CanCollide = false
  78. elseif v.TeamColor ~= Player.TeamColor and v.Name == "Pet_AtorAltAccount" then
  79. v.Character.HumanoidRootPart.Size = Vector3.new(3,5,3)
  80. v.Character.HumanoidRootPart.Material = "Glass"
  81. v.Character.HumanoidRootPart.CanCollide = false
  82. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("New Yeller")
  83. v.Character.HumanoidRootPart.Transparency = 0.7
  84. end
  85. end
  86.  
  87. end
  88.  
  89. end)
  90.  
  91.  
  92.  
  93.  
  94. example:AddButton("Wear dominus Empyreus", function()
  95. local A_1 = "Dominus Empyreus"
  96. local Event = game:GetService("ReplicatedStorage").Char
  97. Event:FireServer(A_1)
  98.  
  99.  
  100.  
  101. end)
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108. example:AddToggle("Super Jump", function(state)
  109. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = (state and 100 or 50)
  110. end)
  111.  
  112.  
  113.  
  114. rage:AddButton("Auto-Shoot ", function()
  115. game.StarterGui:SetCore("SendNotification",{Title="Auto-Shoot ON",Text="Toggle keybind : V"})
  116. local TargPlr = nil
  117. local Player = game:GetService("Players").LocalPlayer
  118. local Character = Player.Character or Player.CharacterAdded:wait()
  119. local Mouse = Player:GetMouse()
  120. local Enabled = true
  121. local TeamsWithPlayers = false
  122. local UIS = game:GetService("UserInputService")
  123. _G.EnableBind = Enum.KeyCode.V
  124.  
  125.  
  126. UIS.InputBegan:Connect(function(key)
  127.  
  128. if key.KeyCode == _G.EnableBind then
  129. if Enabled == true then
  130. Enabled = false
  131. game.StarterGui:SetCore("SendNotification",{Title="Auto-Shoot OFF",Text="Toggle keybind : V"})
  132. elseif Enabled == false then
  133. Enabled = true
  134. game.StarterGui:SetCore("SendNotification",{Title="Auto-Shoot ON",Text="Toggle keybind : V"})
  135. end
  136. end
  137. end)
  138.  
  139.  
  140. MakeShoot = function()
  141. mouse1press()
  142. wait(.4)
  143. mouse1release()
  144. end
  145.  
  146.  
  147. CountPlayersInTeams = function()
  148. for i,v in pairs(game:GetService("Teams"):GetTeams()) do
  149. if v ~= Player.Team and #v:GetPlayers() > 0 then
  150. TeamsWithPlayers = true
  151. elseif v ~= Player.Team and #v:GetPlayers() <= 0 then
  152. TeamsWithPlayers = false
  153. end
  154. end
  155. end
  156.  
  157. game:GetService("RunService").RenderStepped:Connect(function()
  158.  
  159. if Mouse.Target ~= nil and Enabled == true then
  160. CountPlayersInTeams()
  161. if Mouse.Target.Parent:IsA("Model") and Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") and Mouse.Target.Parent ~= Character and Mouse.Target.Parent:FindFirstChildOfClass("Humanoid").Health > 0 then
  162. if game:GetService("Players"):GetPlayerFromCharacter(Mouse.Target.Parent) then
  163. TargPlr = game:GetService("Players"):GetPlayerFromCharacter(Mouse.Target.Parent)
  164. if #game:GetService("Teams"):GetTeams() > 1 and TargPlr.Team ~= nil and TargPlr.Team ~= Player.Team and TeamsWithPlayers == true then
  165. MakeShoot()
  166. elseif #game:GetService("Teams"):GetTeams() <= 0 then
  167. MakeShoot()
  168. elseif TeamsWithPlayers == false then
  169. MakeShoot()
  170. end
  171. else
  172. MakeShoot()
  173.  
  174. end
  175. end
  176. end
  177. end)
  178.  
  179.  
  180.  
  181. end)
  182. rage:AddButton("Godmode", function()
  183.  
  184.  
  185. while true do
  186. wait(0.7)
  187. local Event = game:GetService("ReplicatedStorage").FF
  188. Event:FireServer()
  189. end
  190. while true do
  191. wait(0.1)
  192. for i,v in pairs(game.Workspace:GetDescendants()) do
  193. if v.ClassName == "ForceField" and v.Parent.Name == ""..game.Players.localPlayer.Name.."" then
  194. v.Visible = false
  195. print(v)
  196. end
  197. end
  198. end
  199.  
  200.  
  201. end)
  202. visuals:AddButton("Chams", function()
  203.  
  204. local Holder = Instance.new("Folder", game.CoreGui)
  205. Holder.Name = "ESP"
  206.  
  207. local UpdateFuncs = {}
  208.  
  209. local Box = Instance.new("BoxHandleAdornment")
  210. Box.Name = "nilBox"
  211. Box.Size = Vector3.new(3, 6, 3)
  212. Box.Color3 = Color3.new(100 / 255, 100 / 255, 100 / 255)
  213. Box.Transparency = 0.7
  214. Box.ZIndex = 0
  215. Box.AlwaysOnTop = true
  216. Box.Visible = true
  217.  
  218. local NameTag = Instance.new("BillboardGui")
  219. NameTag.Name = "nilNameTag"
  220. NameTag.Enabled = false
  221. NameTag.Size = UDim2.new(0, 200, 0, 50)
  222. NameTag.AlwaysOnTop = true
  223. NameTag.StudsOffset = Vector3.new(0, 1.8, 0)
  224. local Tag = Instance.new("TextLabel", NameTag)
  225. Tag.Name = "Tag"
  226. Tag.BackgroundTransparency = 1
  227. Tag.Position = UDim2.new(0, -50, 0, 0)
  228. Tag.Size = UDim2.new(0, 300, 0, 20)
  229. Tag.TextSize = 20
  230. Tag.TextColor3 = Color3.new(100 / 255, 100 / 255, 100 / 255)
  231. Tag.TextStrokeColor3 = Color3.new(0 / 255, 0 / 255, 0 / 255)
  232. Tag.TextStrokeTransparency = 0.4
  233. Tag.Text = "nil"
  234. Tag.Font = Enum.Font.SourceSansBold
  235. Tag.TextScaled = false
  236.  
  237. local LoadCharacter = function(v)
  238. repeat wait() until v.Character ~= nil
  239. v.Character:WaitForChild("Humanoid")
  240. local vHolder = Holder:FindFirstChild(v.Name)
  241. vHolder:ClearAllChildren()
  242. local b = Box:Clone()
  243. b.Name = v.Name .. "Box"
  244. b.Adornee = v.Character
  245. b.Parent = vHolder
  246. local t = NameTag:Clone()
  247. t.Name = v.Name .. "NameTag"
  248. t.Enabled = false
  249. t.Parent = vHolder
  250. t.Adornee = v.Character:WaitForChild("Head", 5)
  251. if not t.Adornee then
  252. return UnloadCharacter(v)
  253. end
  254. --t.Tag.Text = v.Name
  255. b.Color3 = Color3.new(v.TeamColor.r, v.TeamColor.g, v.TeamColor.b)
  256. t.Tag.TextColor3 = Color3.new(v.TeamColor.r, v.TeamColor.g, v.TeamColor.b)
  257. local UpdateNameTag = function()
  258. if not pcall(function()
  259. --v.Character.Humanoid.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
  260. local maxh = math.floor(v.Character.Humanoid.MaxHealth)
  261. local h = math.floor(v.Character.Humanoid.Health)
  262. t.Tag.Text = v.Name .. "\n" .. ((maxh ~= 0 and tostring(math.floor((h / maxh) * 100))) or "0") .. "% " .. tostring(h) .. "/" .. tostring(maxh)
  263. end) then
  264. UpdateFuncs[v] = nil
  265. end
  266. end
  267. UpdateNameTag()
  268. UpdateFuncs[v] = UpdateNameTag
  269. end
  270.  
  271. local UnloadCharacter = function(v)
  272. local vHolder = Holder:FindFirstChild(v.Name)
  273. if vHolder and (vHolder:FindFirstChild(v.Name .. "Box") ~= nil or vHolder:FindFirstChild(v.Name .. "NameTag") ~= nil) then
  274. vHolder:ClearAllChildren()
  275. end
  276. end
  277.  
  278. local LoadPlayer = function(v)
  279. local vHolder = Instance.new("Folder", Holder)
  280. vHolder.Name = v.Name
  281. v.CharacterAdded:Connect(function()
  282. pcall(LoadCharacter, v)
  283. end)
  284. v.CharacterRemoving:Connect(function()
  285. pcall(UnloadCharacter, v)
  286. end)
  287. LoadCharacter(v)
  288. end
  289.  
  290. local UnloadPlayer = function(v)
  291. UnloadCharacter(v)
  292. local vHolder = Holder:FindFirstChild(v.Name)
  293. if vHolder then
  294. vHolder:Destroy()
  295. end
  296. end
  297.  
  298. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  299. spawn(function() pcall(LoadPlayer, v) end)
  300. end
  301.  
  302. game:GetService("Players").PlayerAdded:Connect(function(v)
  303. pcall(LoadPlayer, v)
  304. end)
  305.  
  306. game:GetService("Players").PlayerRemoving:Connect(function(v)
  307. pcall(UnloadPlayer, v)
  308. end)
  309.  
  310. game.ItemChanged:Connect(function(i, v)
  311. if i:IsA("Player") and v == "TeamColor" then
  312. if Holder:FindFirstChild(i.Name) then
  313. UnloadCharacter(i)
  314. wait()
  315. LoadCharacter(i)
  316. end
  317. elseif i:IsA("Humanoid") and i.Parent then
  318. local p = game:GetService("Players"):GetPlayerFromCharacter(i.Parent)
  319. if p and Holder:FindFirstChild(p.Name) then
  320. UpdateFuncs[p]()
  321. end
  322. end
  323. end)
  324.  
  325. game:GetService("Players").LocalPlayer.NameDisplayDistance = 0
  326. game:GetService("Players").LocalPlayer.HealthDisplayDistance = 0
  327.  
  328.  
  329. end)
  330. visuals:AddButton("Head Esp", function()
  331. while true do wait(5)
  332. local Player = game:GetService("Players").LocalPlayer
  333. local gui = Instance.new("BillboardGui");
  334.  
  335. gui.Name = "";
  336. gui.AlwaysOnTop = true;
  337. gui.LightInfluence = 0;
  338. gui.Size = UDim2.new(1, 0, 1, 0);
  339. local frame = Instance.new("Frame", gui);
  340. frame.BackgroundColor3 = Color3.fromRGB(51, 102, 255);
  341. frame.Size = UDim2.new(1, 0, 1, 0);
  342. frame.BorderSizePixel = 0;
  343. frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
  344. local gi = gui:Clone();
  345. local body = frame:Clone();
  346. body.Parent = gi;
  347. body.BackgroundColor3 = Color3.fromRGB(51, 102, 255);
  348.  
  349. for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  350. if v.TeamColor ~= Player.TeamColor and v.Name ~= Player.Name and v.Character and v.Character:FindFirstChild("Head") then
  351. gui:Clone().Parent = v.Character.Head;
  352. print(v)
  353. end
  354. end
  355. end
  356. end)
  357. visuals:AddButton("Remove Map",function()
  358. game.StarterGui:SetCore("SendNotification", {
  359. Title = "NerfWare";
  360. Text = "Toggle key is E";
  361.  
  362. Duration = 5;
  363. })
  364.  
  365. AEnabled = false
  366. Advantage = function(i)
  367. if i == true and not game.Lighting:FindFirstChild("Map") then
  368. game.StarterGui:SetCore("SendNotification",{Title="NerfWare",Text="Map Removed"})
  369. workspace:FindFirstChild("Map").Parent = game.Lighting
  370. AEnabled = true
  371. game:GetService('Players').LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Anchored = true
  372. end
  373. if i == false and game.Lighting:FindFirstChild("Map") then
  374. game.StarterGui:SetCore("SendNotification",{Title="NerfWare",Text="Map Returned"})
  375. AEnabled = false game.Lighting:FindFirstChild("Map").Parent = workspace
  376. game:GetService('Players').LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Anchored = false
  377. end
  378. end
  379. mouse=game:GetService('Players').LocalPlayer:GetMouse()
  380. mouse.keyDown:connect(function(key)
  381. if (key) == "e" then
  382. if AEnabled == true then
  383. Advantage(false)
  384. else
  385. Advantage(true)
  386. end
  387. end
  388.  
  389. if (key) == "f" then
  390. game.Lighting:FindFirstChild('Map'):Destroy()
  391. end
  392.  
  393. end)
  394.  
  395. end)
  396. Zombie:AddButton("Kill all alive zombies",function()
  397. while true do wait(0.1)
  398. local A_1 = game:GetService("Workspace").Zombie
  399. local A_2 = 10000000
  400. local A_3 = "SWORD"
  401. local A_4 = false
  402. local Event = game:GetService("ReplicatedStorage").FE.YEET
  403. Event:FireServer(A_1, A_2, A_3, A_4)
  404. end
  405.  
  406.  
  407. end)
  408.  
  409. Zombie:AddButton("Zombie Esp",function()
  410. function CreateESPPart(BodyPart,color)
  411. local ESPPartparent = BodyPart
  412. local Box = Instance.new("BoxHandleAdornment")
  413. Box.Size = BodyPart.Size + Vector3.new(0.1, 0.1, 0.1)
  414. Box.Name = "ESPPart"
  415. Box.Adornee = ESPPartparent
  416. Box.Color3 = color
  417. Box.AlwaysOnTop = true
  418. Box.ZIndex = 5
  419. Box.Transparency = 0.6
  420. Box.Parent = BodyPart
  421. end
  422.  
  423. local zombs = workspace:getChildren()
  424. for i=1,#zombs do
  425. local bodypart = zombs[i]:getChildren()
  426. for i=1,#bodypart do
  427. if bodypart[i].ClassName == "Part" and bodypart[i].Parent.Name == "Zombie" then
  428. CreateESPPart(bodypart[i], Color3.fromRGB(255,0,0))
  429. end
  430. end
  431. end
  432. workspace.ChildAdded:Connect(function(zomb)
  433. wait(0.1)
  434. local bodypart = zomb:getChildren()
  435. for i=1,#bodypart do
  436. if bodypart[i].ClassName == "Part" and bodypart[i].Parent.Name == "Zombie" then
  437. CreateESPPart(bodypart[i], Color3.fromRGB(255,0,0))
  438. end
  439. end
  440. end)
  441.  
  442. end)
  443. Zombie:AddButton("Big Heads",function()
  444. while true do wait(0.3)
  445. for i,v in pairs(game.Workspace:GetDescendants()) do
  446. if v.ClassName == "Part" and v.Parent.Name == "Zombie" then
  447. v.Parent.Head.Size = Vector3.new(3,3,3)
  448.  
  449. end
  450. end
  451. end
  452.  
  453. end)
  454. Zombie:AddButton("Infinite Cash",function()
  455. while true do wait(2)
  456. game.Players.LocalPlayer.leaderstats.Points.Value = 100000000000
  457. end
  458.  
  459. end)
  460. Zombie:AddButton("Open All Doors [FE]",function()
  461.  
  462. local A_1 = 1
  463. local A_2 = game:GetService("Workspace").Map.Door
  464. local Event = game:GetService("ReplicatedStorage").Door
  465. Event:FireServer(A_1, A_2)
  466. wait(0.2)
  467. local A_1 = 2
  468. local A_2 = game:GetService("Workspace").Map.Door
  469. local Event = game:GetService("ReplicatedStorage").Door
  470. Event:FireServer(A_1, A_2)
  471. wait(0.2)
  472. local A_1 = 3
  473. local A_2 = game:GetService("Workspace").Map.Door
  474. local Event = game:GetService("ReplicatedStorage").Door
  475. Event:FireServer(A_1, A_2)
  476. wait(0.2)
  477. local A_1 = 4
  478. local A_2 = game:GetService("Workspace").Map.Door
  479. local Event = game:GetService("ReplicatedStorage").Door
  480. Event:FireServer(A_1, A_2)
  481. wait(0.2)
  482. local A_1 = 5
  483. local A_2 = game:GetService("Workspace").Map.Door
  484. local Event = game:GetService("ReplicatedStorage").Door
  485. Event:FireServer(A_1, A_2)
  486. wait(0.2)
  487. local A_1 = 6
  488. local A_2 = game:GetService("Workspace").Map.Door
  489. local Event = game:GetService("ReplicatedStorage").Door
  490. Event:FireServer(A_1, A_2)
  491. wait(0.2)
  492. local A_1 = 7
  493. local A_2 = game:GetService("Workspace").Map.Door
  494. local Event = game:GetService("ReplicatedStorage").Door
  495. Event:FireServer(A_1, A_2)
  496.  
  497. local A_1 = 8
  498. local A_2 = game:GetService("Workspace").Map.Door
  499. local Event = game:GetService("ReplicatedStorage").Door
  500. Event:FireServer(A_1, A_2)
  501.  
  502. local A_1 = 9
  503. local A_2 = game:GetService("Workspace").Map.Door
  504. local Event = game:GetService("ReplicatedStorage").Door
  505. Event:FireServer(A_1, A_2)
  506.  
  507.  
  508. end)
  509. Zombie:AddButton("Wear Dominus Empryreus",function()
  510. local A_1 = "Dominus Empyreus"
  511. local Event = game:GetService("ReplicatedStorage").Char
  512. Event:FireServer(A_1)
  513.  
  514.  
  515.  
  516. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement