Homestyle_chicken

cvs

Apr 7th, 2020
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.64 KB | None | 0 0
  1. game.Players.LocalPlayer.CharacterAdded:Connect(function(Character)
  2. wait(0.1)
  3. local me = game.Players.LocalPlayer
  4. local char = me.Character
  5. local uis = game:GetService("UserInputService")
  6. local back = me.Backpack
  7.  
  8. local function mod(thing)
  9. for i, v in pairs(thing:GetDescendants()) do
  10. if v.Name == "Setting" then
  11. local s = require(v)
  12. s.Auto = true
  13. s.BaseDamage = math.huge
  14. s.FireRate = 0.01
  15. s.ReloadTime = 0.01
  16. s.AmmoPerClip = math.huge
  17. s.Lifesteal = 99999
  18. s.FlamingBullet = false
  19. s.ExplosiveEnabled = false
  20. s.Radius = 20
  21. s.CameraShakingEnabled = false
  22. end
  23. end
  24. end
  25.  
  26. uis.InputBegan:Connect(function(input, proc)
  27. if input.KeyCode == Enum.KeyCode.T and proc == false then
  28. if me.TeamColor == BrickColor.new("Really black") then
  29. char.HumanoidRootPart.CFrame = CFrame.new(107.433472, -16.7500744, -674.709351, 0.997867227, 8.27649771e-09, -0.0652763322, -7.34506145e-09, 1, 1.45091015e-08, 0.0652763322, -1.39986982e-08, 0.997867227)
  30. else
  31. char.HumanoidRootPart.CFrame = CFrame.new(108.099113, -16.27285, 174.721527, 0.813461602, 5.02934263e-08, -0.581618667, -1.87045508e-08, 1, 6.03109882e-08, 0.581618667, -3.81817529e-08, 0.813461602)
  32. end
  33. end
  34.  
  35. if input.KeyCode == Enum.KeyCode.F and proc == false then
  36. mod(back)
  37. mod(char)
  38. end
  39. end)
  40. end)
  41. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage", {
  42. Text = "activated nugget's cvs gunmods",
  43. Color = Color3.new(0,0,0),
  44. FontSize = Enum.FontSize.Size24,
  45. })
  46. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage", {
  47. Text = "to use this, reset ur character first time, than press f, press f every time u respawn",
  48. Color = Color3.new(0,0,0),
  49. FontSize = Enum.FontSize.Size24,
  50. })
Add Comment
Please, Sign In to add comment