The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Kat! script pastebin roblox
By Kat! on 2024-09-23 08:00 am | Syntax: LUA | Views: 7



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Kat! Scripts", "BloodTheme")
  3.  
  4. local Tab = Window:NewTab("Scripts")
  5. local ScriptsSection = Tab:NewSection("Scripts")
  6.  
  7. local Tab = Window:NewTab("Credits")
  8. local CreditsSection = Tab:NewSection("Credits")
  9.  
  10.  
  11. ScriptsSection:NewButton("DarkHub", "Script By Sakpot (key)", function()
  12.     loadstring(game:HttpGet("http://darkhub.xyz/remote-script.lua", true))()
  13.     print("Clicked")
  14. end)
  15.  
  16. ScriptsSection:NewSlider("WalkSpeed", "This is extra for kat", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  17.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  18. end)
  19.  
  20. ScriptsSection:NewSlider("Jumpower", "This is extra for kat", 500, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  21.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  22. end)
  23.  
  24.  
  25. ScriptsSection:NewButton("Noclip", "This is extra for kat", function()
  26.     local Workspace = game:GetService("Workspace")
  27. local CoreGui = game:GetService("CoreGui")
  28. local Players = game:GetService("Players")
  29. local Noclip = Instance.new("ScreenGui")
  30. local BG = Instance.new("Frame")
  31. local Title = Instance.new("TextLabel")
  32. local Toggle = Instance.new("TextButton")
  33. local StatusPF = Instance.new("TextLabel")
  34. local Status = Instance.new("TextLabel")
  35. local Credit = Instance.new("TextLabel")
  36. local Plr = Players.LocalPlayer
  37. local Clipon = false
  38.  
  39. Noclip.Name = "Noclip"
  40. Noclip.Parent = game.CoreGui
  41.  
  42. BG.Name = "BG"
  43. BG.Parent = Noclip
  44. BG.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  45. BG.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  46. BG.BorderSizePixel = 2
  47. BG.Position = UDim2.new(0.149479166, 0, 0.82087779, 0)
  48. BG.Size = UDim2.new(0, 210, 0, 127)
  49. BG.Active = true
  50. BG.Draggable = true
  51.  
  52. Title.Name = "Title"
  53. Title.Parent = BG
  54. Title.BackgroundColor3 = Color3.new(0.266667, 0.00392157, 0.627451)
  55. Title.BorderColor3 = Color3.new(0.180392, 0, 0.431373)
  56. Title.BorderSizePixel = 2
  57. Title.Size = UDim2.new(0, 210, 0, 33)
  58. Title.Font = Enum.Font.Highway
  59. Title.Text = "Noclip"
  60. Title.TextColor3 = Color3.new(1, 1, 1)
  61. Title.FontSize = Enum.FontSize.Size32
  62. Title.TextSize = 30
  63. Title.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  64. Title.TextStrokeTransparency = 0
  65.  
  66. Toggle.Parent = BG
  67. Toggle.BackgroundColor3 = Color3.new(0.266667, 0.00392157, 0.627451)
  68. Toggle.BorderColor3 = Color3.new(0.180392, 0, 0.431373)
  69. Toggle.BorderSizePixel = 2
  70. Toggle.Position = UDim2.new(0.152380958, 0, 0.374192119, 0)
  71. Toggle.Size = UDim2.new(0, 146, 0, 36)
  72. Toggle.Font = Enum.Font.Highway
  73. Toggle.FontSize = Enum.FontSize.Size28
  74. Toggle.Text = "Toggle"
  75. Toggle.TextColor3 = Color3.new(1, 1, 1)
  76. Toggle.TextSize = 25
  77. Toggle.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  78. Toggle.TextStrokeTransparency = 0
  79.  
  80. StatusPF.Name = "StatusPF"
  81. StatusPF.Parent = BG
  82. StatusPF.BackgroundColor3 = Color3.new(1, 1, 1)
  83. StatusPF.BackgroundTransparency = 1
  84. StatusPF.Position = UDim2.new(0.314285725, 0, 0.708661377, 0)
  85. StatusPF.Size = UDim2.new(0, 56, 0, 20)
  86. StatusPF.Font = Enum.Font.Highway
  87. StatusPF.FontSize = Enum.FontSize.Size24
  88. StatusPF.Text = "Status:"
  89. StatusPF.TextColor3 = Color3.new(1, 1, 1)
  90. StatusPF.TextSize = 20
  91. StatusPF.TextStrokeColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  92. StatusPF.TextStrokeTransparency = 0
  93. StatusPF.TextWrapped = true
  94.  
  95. Status.Name = "Status"
  96. Status.Parent = BG
  97. Status.BackgroundColor3 = Color3.new(1, 1, 1)
  98. Status.BackgroundTransparency = 1
  99. Status.Position = UDim2.new(0.580952346, 0, 0.708661377, 0)
  100. Status.Size = UDim2.new(0, 56, 0, 20)
  101. Status.Font = Enum.Font.Highway
  102. Status.FontSize = Enum.FontSize.Size14
  103. Status.Text = "off"
  104. Status.TextColor3 = Color3.new(0.666667, 0, 0)
  105. Status.TextScaled = true
  106. Status.TextSize = 14
  107. Status.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  108. Status.TextWrapped = true
  109. Status.TextXAlignment = Enum.TextXAlignment.Left
  110.  
  111. Credit.Name = "Credit"
  112. Credit.Parent = BG
  113. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  114. Credit.BackgroundTransparency = 1
  115. Credit.Position = UDim2.new(0.195238099, 0, 0.866141737, 0)
  116. Credit.Size = UDim2.new(0, 128, 0, 17)
  117. Credit.Font = Enum.Font.SourceSans
  118. Credit.FontSize = Enum.FontSize.Size18
  119. Credit.Text = "Created by Bendza"
  120. Credit.TextColor3 = Color3.new(1, 1, 1)
  121. Credit.TextSize = 16
  122. Credit.TextStrokeColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  123. Credit.TextStrokeTransparency = 0
  124. Credit.TextWrapped = true
  125.  
  126. Toggle.MouseButton1Click:connect(function()
  127.         if Status.Text == "off" then
  128.                 Clipon = true
  129.                 Status.Text = "on"
  130.                 Status.TextColor3 = Color3.new(0,185,0)
  131.                 Stepped = game:GetService("RunService").Stepped:Connect(function()
  132.                         if not Clipon == false then
  133.                                 for a, b in pairs(Workspace:GetChildren()) do
  134.                 if b.Name == Plr.Name then
  135.                 for i, v in pairs(Workspace[Plr.Name]:GetChildren()) do
  136.                 if v:IsA("BasePart") then
  137.                 v.CanCollide = false
  138.                 end end end end
  139.                         else
  140.                                 Stepped:Disconnect()
  141.                         end
  142.                 end)
  143.         elseif Status.Text == "on" then
  144.                 Clipon = false
  145.                 Status.Text = "off"
  146.                 Status.TextColor3 = Color3.new(170,0,0)
  147.         end
  148. end)
  149.     print("Clicked")
  150. end)
  151.  
  152.  
  153.  
  154.  
  155. CreditsSection:NewLabel("Credits Sakpot who created DarkHub and bendza who created the script")



  • Recent Roblox Scripts