Advertisement
Guest User

Untitled

a guest
May 3rd, 2019
1,933
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1.  
  2.  
  3. -- Apocalypse Rising Infinite Ammo Script by wallythemad @ v3rmillion.net
  4. local p = game.Players.LocalPlayer.Name
  5. local client = game:GetService("Players").LocalPlayer
  6. local ammo_ammount = 99999
  7.  
  8. local fillers = {"a","B","i","P","Y","S"}
  9. local alphabet = {"A","C","d","g","L","p","s","T","Z"}
  10. local obfuscate = function(val)
  11. local newval = ""
  12. val = tostring(val)
  13.  
  14. for _ = 1, 10 - string.len(val) do
  15. newval = fillers[math.random(1,6)] .. newval
  16. end
  17.  
  18. for d = 1, string.len(val) do
  19. local num = tonumber(string.sub(val,d,d))
  20. if num > 0 then
  21. newval = newval .. alphabet[num]
  22. else
  23. newval = newval .. fillers[math.random(1,6)]
  24. end
  25. end
  26.  
  27. return newval
  28. end
  29.  
  30. for k, v in next, client.playerstats.slots:GetChildren() do
  31. if v:FindFirstChild("ObjectID") then
  32. if v:FindFirstChild("ObjectID"):FindFirstChild("Clip") then -- ure clip l0l
  33. v.ObjectID.Clip.MaxClip.Value = ammo_ammount -- max amount the clip will hold; bypasses the ammo check
  34. v.ObjectID.Clip.Value = obfuscate(ammo_ammount) -- amount in the actual clip
  35. end
  36. end
  37. end
  38.  
  39. game.Players.LocalPlayer.playerstats.Hunger.Value = 99999
  40. game.Players.LocalPlayer.playerstats.Hunger.Value = 99999
  41. game.Lighting.FogEnd = 100000
  42. game.Lighting.FogStart = 100000
  43. game.Players.LocalPlayer.PlayerGui.HitEqualsYouDie.WalkspeedEdit:Remove()
  44. game.Players.LocalPlayer.PlayerGui.HitEqualsYouDie.JumpLimiter:Remove()
  45. game.Workspace.p.Humanoid.WalkSpeed.Value = 25
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement