redwood prison


SUBMITTED BY: rapbattlegod32

DATE: Nov. 28, 2021, 2:08 p.m.

FORMAT: Text only

SIZE: 1.1 kB

HITS: 530

  1. local riotshields = 0
  2. local s_riotshields = Instance.new('Folder', game.Players.LocalPlayer.Character)
  3. s_riotshields.Name = 'StoredRiotShields'
  4. repeat wait(0.001)
  5. riotshields = riotshields + 1
  6. local A_1 = "giveRiotShield"
  7. local A_2 = game:GetService("Workspace").RiotShield
  8. local Event = game:GetService("Workspace").resources.RemoteFunction
  9. Event:InvokeServer(A_1, A_2)
  10. local plr = game.Players.LocalPlayer
  11. local char = plr.Character
  12. for i,v in pairs(char:GetChildren()) do
  13. if v:IsA('Part') and v.Name == 'RiotShield' then
  14. local D_1 = Instance.new('Decal', v)
  15. D_1.Texture = '7464536663'
  16. v.Mesh:Destroy()
  17. v.Parent = s_riotshields
  18. --v.ClickDetector:Destroy()
  19. char.Humanoid.Died:Connect(function()
  20. v:Destroy()
  21. end)
  22. end
  23. end
  24. for i,v in pairs(char['Left Arm']:GetChildren()) do
  25. if v:IsA('Weld') then
  26. v:Destroy()
  27. end
  28. end
  29. until riotshields == 100 or game.Players.LocalPlayer.Character.Humanoid.Died

comments powered by Disqus