Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 659 Bytes

File metadata and controls

19 lines (17 loc) · 659 Bytes

Watermark

Author: @elleqt

Name: Neverlose Watermark

Description: Watermark

local username = Cheat.GetCheatUserName()
local text = "neverlose.cc | " .. username
local textSize = Render.CalcTextSize(text, 12)
local position = Vector2.new(20, 15)
local indent = Vector2.new(10, 5)
Cheat.RegisterCallback("draw", function()
    Render.BoxFilled(Vector2.new(position.x - indent.x, position.y - indent.y), Vector2.new(position.x + textSize.x + indent.x, position.y + textSize.y + indent.y), Color.new(0, 0, 0, 0.7))
    Render.Text(text, Vector2.new(position.x, position.y), Color.new(1, 1, 1, 1), 12)
end)