Advertisement
Sewowx

skibidi toliet Script | By WHY

Jun 16th, 2023 (edited)
3,802
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.54 KB | None | 0 1
  1. game:GetService("StarterGui"):SetCore("SendNotification",{
  2. Title = "Script Loaded";
  3. Text = "Sub WHY_Own";
  4. Duration = 20;
  5. })
  6.  
  7. local kavoUi = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  8. local window = kavoUi.CreateLib("Skibid Toilet siege defense Script","Ocean")
  9.  
  10. ---Tabs
  11.  
  12. local Tab1 = window:NewTab("Main")
  13. local Tab1Section = Tab1:NewSection("Main")
  14. local Tab2 = window:NewTab("Credits")
  15. local Tab2Section = Tab2:NewSection("Made By WHY_Own")
  16. local Tab2Section = Tab2:NewSection("Subscribe To WHY_Own On Youtube")
  17.  
  18. ---Buttons
  19.  
  20. Tab1Section:NewButton("Auto Clicker","Auto",function()
  21. --// Setting \--
  22. local range = 1000
  23.  
  24. --// Variable \--
  25. local player = game:GetService("Players").LocalPlayer
  26.  
  27. --// Script \--
  28. game:GetService("RunService").RenderStepped:Connect(function()
  29. local p = game.Players:GetPlayers()
  30. for i = 2, #p do local v = p[i].Character
  31. if v and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 and v:FindFirstChild("HumanoidRootPart") and player:DistanceFromCharacter(v.HumanoidRootPart.Position) <= range then
  32. local tool = player.Character and player.Character:FindFirstChildOfClass("Tool")
  33. if tool and tool:FindFirstChild("Handle") then
  34. tool:Activate()
  35. for i,v in next, v:GetChildren() do
  36. if v:IsA("BasePart") then
  37. firetouchinterest(tool.Handle,v,0)
  38. firetouchinterest(tool.Handle,v,1)
  39. end
  40. end
  41. end
  42. end
  43. end
  44. end)
  45. end)
  46.  
  47. Tab1Section:NewButton("Camera Man Esp","esp",function()
  48. local lplr = game.Players.LocalPlayer
  49. local camera = game:GetService("Workspace").CurrentCamera
  50. local CurrentCamera = workspace.CurrentCamera
  51. local worldToViewportPoint = CurrentCamera.worldToViewportPoint
  52.  
  53. _G.TeamCheck = false -- Use True or False to toggle TeamCheck
  54.  
  55. for i,v in pairs(game.Players:GetChildren()) do
  56. local Tracer = Drawing.new("Line")
  57. Tracer.Visible = false
  58. Tracer.Color = Color3.new(255, 0, 0)
  59. Tracer.Thickness = 1
  60. Tracer.Transparency = 1
  61.  
  62. function lineesp()
  63. game:GetService("RunService").RenderStepped:Connect(function()
  64. if v.Character ~= nil and v.Character:FindFirstChild("Humanoid") ~= nil and v.Character:FindFirstChild("HumanoidRootPart") ~= nil and v ~= lplr and v.Character.Humanoid.Health > 0 then
  65. local Vector, OnScreen = camera:worldToViewportPoint(v.Character.HumanoidRootPart.Position)
  66.  
  67. if OnScreen then
  68. Tracer.From = Vector2.new(camera.ViewportSize.X / 2, camera.ViewportSize.Y / 1)
  69. Tracer.To = Vector2.new(Vector.X, Vector.Y)
  70.  
  71. if _G.TeamCheck and v.TeamColor == lplr.TeamColor then
  72. --//Teammates
  73. Tracer.Visible = false
  74. else
  75. --//Enemies
  76. Tracer.Visible = true
  77. end
  78. else
  79. Tracer.Visible = false
  80. end
  81. else
  82. Tracer.Visible = false
  83. end
  84. end)
  85. end
  86. coroutine.wrap(lineesp)()
  87. end
  88.  
  89. game.Players.PlayerAdded:Connect(function(v)
  90. local Tracer = Drawing.new("Line")
  91. Tracer.Visible = false
  92. Tracer.Color = Color3.new(1,1,1)
  93. Tracer.Thickness = 1
  94. Tracer.Transparency = 1
  95.  
  96. function lineesp()
  97. game:GetService("RunService").RenderStepped:Connect(function()
  98. if v.Character ~= nil and v.Character:FindFirstChild("Humanoid") ~= nil and v.Character:FindFirstChild("HumanoidRootPart") ~= nil and v ~= lplr and v.Character.Humanoid.Health > 0 then
  99. local Vector, OnScreen = camera:worldToViewportPoint(v.Character.HumanoidRootPart.Position)
  100.  
  101. if OnScreen then
  102. Tracer.From = Vector2.new(camera.ViewportSize.X / 2, camera.ViewportSize.Y / 1)
  103. Tracer.To = Vector2.new(Vector.X, Vector.Y)
  104.  
  105. if _G.TeamCheck and v.TeamColor == lplr.TeamColor then
  106. --//Teammates
  107. Tracer.Visible = false
  108. else
  109. --//Enemies
  110. Tracer.Visible = true
  111. end
  112. else
  113. Tracer.Visible = false
  114. end
  115. else
  116. Tracer.Visible = false
  117. end
  118. end)
  119. end
  120. coroutine.wrap(lineesp)()
  121. end)
  122. end)
  123.  
  124. Tab1Section:NewToggle("Infinite Jumps"," Infinite Jumps",function()
  125. local InfiniteJumpEnabled = true
  126. game:GetService("UserInputService").JumpRequest:connect(function()
  127. if InfiniteJumpEnabled then
  128. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  129. end
  130. end)
  131. end)
  132.  
  133. Tab1Section:NewButton("Speed","Increase speed",function()
  134. function isNumber(str)
  135. if tonumber(str) ~= nil or str == 'inf' then
  136. return true
  137. end
  138. end
  139. local tspeed = 1
  140. local hb = game:GetService("RunService").Heartbeat
  141. local tpwalking = true
  142. local player = game:GetService("Players")
  143. local lplr = player.LocalPlayer
  144. local chr = lplr.Character
  145. local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
  146. while tpwalking and hb:Wait() and chr and hum and hum.Parent do
  147. if hum.MoveDirection.Magnitude > 0 then
  148. if tspeed and isNumber(tspeed) then
  149. chr:TranslateBy(hum.MoveDirection * tonumber(tspeed))
  150. else
  151. chr:TranslateBy(hum.MoveDirection)
  152. end
  153. end
  154. end
  155. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement