Advertisement
NoMoreGames

COMBAT SURF SCRIPT SILENT

Apr 8th, 2025 (edited)
473
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local label = Instance.new("TextLabel")
  4. local Hitbox =
  5. Instance.new("TextButton")
  6.  
  7. ScreenGui.Parent = game.CoreGui
  8.  
  9. main.Name = "main"
  10. main.Parent = ScreenGui
  11. main.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  12. main.Position = UDim2.new(0.40427351, 0, 0.34591195, 0)
  13. main.Size = UDim2.new(0, 100, 0, 100)
  14. main.Active = true
  15. main.Draggable = true
  16.  
  17. label.Name = "label"
  18. label.Parent = main
  19. label.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  20. label.Size = UDim2.new(0, 100, 0, 20)
  21. label.Font = Enum.Font.SourceSans
  22. label.Text = "made by valp"
  23. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  24. label.TextScaled = true
  25. label.TextSize = 5.000
  26. label.TextWrapped = true
  27.  
  28. Hitbox.Name = "Hitbox"
  29. Hitbox.Parent = main
  30. Hitbox.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  31. Hitbox.Position = UDim2.new(0.114285722, 0, 0.372448981, 0)
  32. Hitbox.Size = UDim2.new(0, 90, 0, 40)
  33. Hitbox.Font = Enum.Font.SourceSans
  34. Hitbox.Text = "hitbox"
  35. Hitbox.TextColor3 = Color3.fromRGB(0, 0, 0)
  36. Hitbox.TextSize = 40.000
  37. Hitbox.MouseButton1Down:connect(function()
  38. _G.HeadSize = 25
  39.  
  40. _G.Disabled = true
  41.  
  42.  
  43. game:GetService('RunService').RenderStepped:connect(function()
  44. if _G.Disabled then
  45. for i,v in next, game:GetService('Players'):GetPlayers() do
  46. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  47. pcall(function()
  48. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  49. v.Character.HumanoidRootPart.Transparency = 1
  50. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  51. v.Character.HumanoidRootPart.Material = "Neon"
  52. v.Character.HumanoidRootPart.CanCollide = false
  53. end)
  54. end
  55. end
  56. end
  57. end)
  58. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement