NeptuwuneColony

Roblox Furrious Containment UI Script [Updated: 03/13/21][Noclip, Anti-Infection and Gamepass]

Dec 1st, 2020 (edited)
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.39 KB | None | 0 0
  1. local FurriousUI = Instance.new("ScreenGui")
  2. local Topframe = Instance.new("Frame")
  3. local Title = Instance.new("TextLabel")
  4. local Close = Instance.new("ImageButton")
  5. local BottomFrame = Instance.new("Frame")
  6. local Gamepass = Instance.new("TextButton")
  7. local AntiInfection = Instance.new("TextButton")
  8. local Noclip = Instance.new("TextButton")
  9. local Clip = Instance.new("TextButton")
  10. local NoInfect = Instance.new("TextButton")
  11. local NoGUI = Instance.new("TextLabel")
  12. local Information = Instance.new("TextLabel")
  13.  
  14. local cmdp = game:GetService("Players")
  15. local cmdlp = cmdp.LocalPlayer
  16. local replicated = game:GetService("ReplicatedStorage")
  17.  
  18. FurriousUI.Name = "FurriousUI"
  19. FurriousUI.Parent = game.CoreGui
  20.  
  21. Topframe.Name = "Topframe"
  22. Topframe.Parent = FurriousUI
  23. Topframe.Active = true
  24. Topframe.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  25. Topframe.BorderSizePixel = 0
  26. Topframe.Position = UDim2.new(0.251643211, 0, 0.216014892, 0)
  27. Topframe.Size = UDim2.new(0, 384, 0, 28)
  28.  
  29. Title.Name = "Title"
  30. Title.Parent = Topframe
  31. Title.Active = true
  32. Title.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  33. Title.BorderSizePixel = 0
  34. Title.Position = UDim2.new(0.239583313, 0, 0, 0)
  35. Title.Size = UDim2.new(0, 132, 0, 27)
  36. Title.Font = Enum.Font.Ubuntu
  37. Title.Text = "Furrious UI: "
  38. Title.TextColor3 = Color3.fromRGB(185, 185, 185)
  39. Title.TextSize = 15.000
  40.  
  41. Close.Name = "Close"
  42. Close.Parent = Topframe
  43. Close.BackgroundTransparency = 1.000
  44. Close.Position = UDim2.new(0.92968744, 0, 0, 0)
  45. Close.Size = UDim2.new(0, 28, 0, 28)
  46. Close.Image = "rbxassetid://3944676352"
  47. Close.ImageColor3 = Color3.fromRGB(186, 186, 186)
  48. Close.ScaleType = Enum.ScaleType.Fit
  49.  
  50. BottomFrame.Name = "BottomFrame"
  51. BottomFrame.Parent = Topframe
  52. BottomFrame.Active = true
  53. BottomFrame.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  54. BottomFrame.BorderSizePixel = 0
  55. BottomFrame.Position = UDim2.new(0, 0, 0.992788315, 0)
  56. BottomFrame.Size = UDim2.new(0, 384, 0, 175)
  57.  
  58. Gamepass.Name = "Gamepass"
  59. Gamepass.Parent = BottomFrame
  60. Gamepass.Active = true
  61. Gamepass.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  62. Gamepass.BorderSizePixel = 0
  63. Gamepass.Position = UDim2.new(0.1, 0, 0.15, 0)
  64. Gamepass.Size = UDim2.new(0, 132, 0, 27)
  65. Gamepass.Font = Enum.Font.Ubuntu
  66. Gamepass.Text = "Z | Gamepass Items"
  67. Gamepass.TextColor3 = Color3.fromRGB(185, 185, 185)
  68. Gamepass.TextSize = 14.000
  69.  
  70. AntiInfection.Name = "AntiInfection"
  71. AntiInfection.Parent = BottomFrame
  72. AntiInfection.Active = true
  73. AntiInfection.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  74. AntiInfection.BorderSizePixel = 0
  75. AntiInfection.Position = UDim2.new(0.1, 0, 0.4, 0)
  76. AntiInfection.Size = UDim2.new(0, 132, 0, 27)
  77. AntiInfection.Font = Enum.Font.Ubuntu
  78. AntiInfection.Text = "X | Anti-Infection"
  79. AntiInfection.TextColor3 = Color3.fromRGB(185, 185, 185)
  80. AntiInfection.TextSize = 14.000
  81.  
  82. Noclip.Name = "Noclip"
  83. Noclip.Parent = BottomFrame
  84. Noclip.Active = true
  85. Noclip.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  86. Noclip.BorderSizePixel = 0
  87. Noclip.Position = UDim2.new(0.5, 0, 0.15, 0)
  88. Noclip.Size = UDim2.new(0, 132, 0, 27)
  89. Noclip.Font = Enum.Font.Ubuntu
  90. Noclip.Text = "N | Noclip"
  91. Noclip.TextColor3 = Color3.fromRGB(185, 185, 185)
  92. Noclip.TextSize = 14.000
  93.  
  94. Clip.Name = "Clip"
  95. Clip.Parent = BottomFrame
  96. Clip.Active = true
  97. Clip.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  98. Clip.BorderSizePixel = 0
  99. Clip.Position = UDim2.new(0.5, 0, 0.4, 0)
  100. Clip.Size = UDim2.new(0, 132, 0, 27)
  101. Clip.Font = Enum.Font.Ubuntu
  102. Clip.Text = "C | Clip"
  103. Clip.TextColor3 = Color3.fromRGB(185, 185, 185)
  104. Clip.TextSize = 14.000
  105.  
  106. NoInfect.Name = "NoInfect"
  107. NoInfect.Parent = BottomFrame
  108. NoInfect.Active = true
  109. NoInfect.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  110. NoInfect.BorderSizePixel = 0
  111. NoInfect.Position = UDim2.new(0.3, 0, 0.6, 0)
  112. NoInfect.Size = UDim2.new(0, 132, 0, 27)
  113. NoInfect.Font = Enum.Font.Ubuntu
  114. NoInfect.Text = "B | No Infect GUI"
  115. NoInfect.TextColor3 = Color3.fromRGB(185, 185, 185)
  116. NoInfect.TextSize = 14.000
  117.  
  118. NoGUI.Name = "NoGUI"
  119. NoGUI.Parent = BottomFrame
  120. NoGUI.Active = true
  121. NoGUI.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  122. NoGUI.BorderSizePixel = 0
  123. NoGUI.Position = UDim2.new(0.225, 0, 0.8, 0)
  124. NoGUI.Size = UDim2.new(0, 200, 0, 30)
  125. NoGUI.Font = Enum.Font.Ubuntu
  126. NoGUI.Text = "If you are using Anti-Infection\nand you reset you must press B"
  127. NoGUI.TextColor3 = Color3.fromRGB(185, 185, 185)
  128. NoGUI.TextSize = 12.000
  129.  
  130. Information.Name = "Information"
  131. Information.Parent = BottomFrame
  132. Information.Active = true
  133. Information.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  134. Information.BorderSizePixel = 0
  135. Information.Position = UDim2.new(0, 0, 1, 0)
  136. Information.Size = UDim2.new(0, 384, 0, 16)
  137. Information.Font = Enum.Font.Ubuntu
  138. Information.Text = "Creator: Neptune#8293"
  139. Information.TextColor3 = Color3.fromRGB(185, 185, 185)
  140. Information.TextSize = 15.000
  141.  
  142. Topframe.Active = true
  143. Topframe.Draggable = true
  144.  
  145. function gamepassItems()
  146.     replicated.ToolPurchase:FireServer("InfectedBasherPan")
  147.     replicated.ToolPurchase:FireServer("InfectedBasherBat")
  148.     replicated.ToolPurchase:FireServer("FlameThrower")
  149. end
  150.  
  151. function noInfect()
  152.     cmdlp.PlayerGui.InfectGui:Destroy()
  153. end
  154.  
  155. if Noclipping then
  156.     Noclipping:Disconnect()
  157. end
  158. Clip1 = true
  159. function noclip()
  160.     Clip1 = false
  161.     function NoclipLoop()
  162.         if Clip1 == false and cmdlp.Character ~= nil then
  163.             for _, child in pairs(cmdlp.Character:GetDescendants()) do
  164.                 if child:IsA("BasePart") and child.CanCollide == true then
  165.                     child.CanCollide = false
  166.                 end
  167.             end
  168.         end
  169.     end
  170.     Noclipping = game:GetService('RunService').Stepped:connect(NoclipLoop)
  171. end
  172.  
  173. Close.MouseButton1Click:Connect(function()
  174.     FurriousUI:Destroy()
  175. end)
  176.  
  177. Gamepass.MouseButton1Click:Connect(function()
  178.     gamepassItems()
  179. end)
  180.  
  181. AntiInfection.MouseButton1Click:Connect(function()
  182.     noInfect()
  183.     while wait(0) do
  184.         replicated.PlayerInfected:FireServer(false)
  185.     end
  186. end)
  187.  
  188. Noclip.MouseButton1Click:Connect(function()
  189.     noclip()
  190. end)
  191.  
  192. Clip.MouseButton1Click:Connect(function()
  193.     if Noclipping then
  194.         Noclipping:Disconnect()
  195.     end
  196.     Clip1 = true
  197. end)
  198.  
  199. NoInfect.MouseButton1Click:Connect(function()
  200.     noInfect()
  201. end)
  202.  
  203.  
  204. function onKeyPress(inputObject, gameProcessedEvent)
  205.     if inputObject.KeyCode == Enum.KeyCode.N then
  206.         noclip()
  207.     end
  208. end
  209. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  210.  
  211. function onKeyPress(inputObject, gameProcessedEvent)
  212.     if inputObject.KeyCode == Enum.KeyCode.C then
  213.         if Noclipping then
  214.             Noclipping:Disconnect()
  215.         end
  216.         Clip1 = true
  217.     end
  218. end
  219. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  220.  
  221. function onKeyPress(inputObject, gameProcessedEvent)
  222.     if inputObject.KeyCode == Enum.KeyCode.Z then
  223.         gamepassItems()
  224.     end
  225. end
  226. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  227.  
  228. function onKeyPress(inputObject, gameProcessedEvent)
  229.     if inputObject.KeyCode == Enum.KeyCode.X then
  230.         noInfect()
  231.         while wait(0) do
  232.             replicated.PlayerInfected:FireServer(false)
  233.         end
  234.     end
  235. end
  236. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  237.  
  238. function onKeyPress(inputObject, gameProcessedEvent)
  239.     if inputObject.KeyCode == Enum.KeyCode.B then
  240.         noInfect()
  241.     end
  242. end
  243. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Add Comment
Please, Sign In to add comment