It’s a video chat script I make for my server, it can’t be used plug and play, you need to integrate it into your phone to use it. The first visual is an image from the phone I use on my server 2. the visual is the user interface that is included in the script for the demo.
Utk_render was used in the construction of this script.
@utkuali - utk-render
can be found here : Github
Other scripts →
Bodycam
Status Hud
Car Supermod
Rgb Headlight
UI Object Spawner - LSPD phone design
Barbecue Job - (Npc Customers & UI )
Atm Robbery
MY TEBEX STORE→
NakreS
9 Likes
Looks similar to another resource…
6 Likes
Yes video call is supposed to look the same but this one’s free
6 Likes
Any readme etc. on how to implement it.
3 Likes
Refurb
6
ofcourse they do, they are both using the same render which is the utk-render one is just massively overpriced and the other is free.
5 Likes
Critical Scripts video call is from 2020 and UTK render is from 2021, not the same.
2 Likes
which phones are compatible?
4 Likes
readme? how to implement it on my phone?
3 Likes
You can apply HTML and js to any phone you can access , I can’t publish an example because I’m busy right now, so I’m going to share an example when I’m done
2 Likes
Can you please give instructions on how to set it up for gcphone? It would be a great help if you do. Most of the people are newbies when it comes to developing. As of now this is only useful for those who have extreme knowledge in this field.
3 Likes
if the offer is not available, it means to exit the code block without responding via webrtc. if user == nil then return end sendData({ type = "answer", answer = data.answer }, user.serverId) or if user ~= nil then sendData({ type = "answer", answer = data.answer }, user.serverId) end They both work the same way.
2 Likes
why check for nil?
There are two options, if it’s an array (then #array works crookedly in Lua, and make a function like tableSize(array) – return length array) if it’s something else, then just
if not user then return end – NOT ARRAY
if tableSize(user) <= 0 then return end
1 Like
User is not defined for startup, defined if this is not available ,
, Returns the nile value, not a table if it is not available.
1 Like
You don’t understand what I’m talking about. You’re doing an extra check.
if not false.
local bool = false
if not bool then print(“THIS BOOL == FALSE”) end
local null = nil
if not null then print(“THIS NIL”) end
And you write
local null = nil
if null == nil then print(“THIS NIL”) end
What for? Do not know

3 Likes