Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local ScreenGui = Instance.new("ScreenGui")
- local TextLabel = Instance.new("TextLabel")
- ScreenGui.Parent = player:WaitForChild("PlayerGui")
- TextLabel.Parent = ScreenGui
- TextLabel.Size = UDim2.new(0, 400, 0, 100)
- TextLabel.Position = UDim2.new(0, 10, 0, 10)
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.TextStrokeTransparency = 0.5
- TextLabel.Font = Enum.Font.SourceSansBold
- TextLabel.TextSize = 50
- TextLabel.Text = "Made by kaezy"
- local function rainbowTextLabel()
- 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)}
- local index = 1
- while true do
- TextLabel.TextColor3 = colors[index]
- index = (index % #colors) + 1
- wait(0.5)
- end
- end
- coroutine.wrap(rainbowTextLabel)()
- loadstring(game:HttpGet("https://rawscripts.net/raw/Combat-Warriors-ranged-hitbox-expander-10430"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement