fendy_start
Gold Elite
Updated TODAY 01.05.2025 !! SOME CHANGES IN DESCRIPTION HERE AND VIDEO UPDATE! AND EXPORT ADDED
Here is the okokTextUI to get a nicer UI for the Text and Message!
Feature Config:
Set the:
Colors:
Displaying:
Hiding:
Displaying (in a loop):
Take a Look There:
Virus Scan:
Here is the okokTextUI to get a nicer UI for the Text and Message!
Feature Config:
Set the:
- Message;
- Color (blue/red/green/gray);
- Position (left/right).
Colors:
lightblue / darkblue;
lightgreen / darkgreen;
lightred / darkred;
lightgrey / darkgrey.
right;
left.
true;
false.
Example:
Displaying:
Code:
exports['okokTextUI']:Open('[Key] Message', 'color', 'position', playSound)
Hiding:
Code:
exports['okokTextUI']:Close()
Displaying (in a loop):
Code:
exports.okokTextUI:OpenThisFrame('[Key] Message', 'color', 'position', playSound)
Code:
local shown = false
local inDistance = false
while true do
inDistance = false
-- your code
if playerDistance <= distance then
inDistance = true
-- your code when you are inside the range
else
-- your code when you are outside the range
end
if not shown and inDistance then
exports['okokTextUI']:Open('[E] Hello', 'lightgreen', 'right', true)
shown = true
elseif shown and not inDistance then
exports['okokTextUI']:Close()
shown = false
end
end
Take a Look There:
Hidden link for visitors, to see
Log in or register now.
Virus Scan:
Hidden link for visitors, to see
Log in or register now.
Attachments
Last edited: