Advertisement
NothingYT960

Ranged hitbox

Jul 21st, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local TextLabel = Instance.new("TextLabel")
  4.  
  5. ScreenGui.Parent = player:WaitForChild("PlayerGui")
  6. TextLabel.Parent = ScreenGui
  7. TextLabel.Size = UDim2.new(0, 400, 0, 100)
  8. TextLabel.Position = UDim2.new(0, 10, 0, 10)
  9. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  10. TextLabel.BackgroundTransparency = 1
  11. TextLabel.TextStrokeTransparency = 0.5
  12. TextLabel.Font = Enum.Font.SourceSansBold
  13. TextLabel.TextSize = 50
  14. TextLabel.Text = "Made by kaezy"
  15.  
  16. local function rainbowTextLabel()
  17. local colors = {Color3.fromRGB(255, 0, 0), Color3.fromRGB(255, 165, 0), Color3.fromRGB(255, 255, 0), Color3.fromRGB(0, 255, 0), Color3.fromRGB(0, 0, 255), Color3.fromRGB(75, 0, 130), Color3.fromRGB(238, 130, 238)}
  18. local index = 1
  19. while true do
  20. TextLabel.TextColor3 = colors[index]
  21. index = (index % #colors) + 1
  22. wait(0.5)
  23. end
  24. end
  25.  
  26. coroutine.wrap(rainbowTextLabel)()
  27.  
  28. loadstring(game:HttpGet("https://rawscripts.net/raw/Combat-Warriors-ranged-hitbox-expander-10430"))()
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement