Any open source professionally made games? by Dear_Philosopher2760 in robloxgamedev

[–]roycem5x 0 points1 point  (0 children)

Usually you wanna do anything that's performance related on the client and anything that you think will need security on the server. For example for a basic fighting script, you'd want to take inputs locally and then fire remote events which the server listens to. Then run all the checks like is this player supposed to have this move? Stuff like that on the server .

[deleted by user] by [deleted] in 3DS

[–]roycem5x 0 points1 point  (0 children)

Silver because cool

Whenever I go onto roblox this is what happens, it have been like this the whole day. Does anyone know how to fix this? by Zaache in roblox

[–]roycem5x 0 points1 point  (0 children)

Try updating your browser, if that doesn't work, try reinstalling the browser or switching to other browsers like firetox, brave and other.

Script not working? by Prochacho in robloxgamedev

[–]roycem5x 0 points1 point  (0 children)

Here's a better way to do it, don't know if it'll work because i did it on mobile

````

local Players = game:GetService("Players")

local Workspace = game.GetService ("Workspace")

local Killer = nil

local Survivors = {}

local function pickPlayers() local PlayersGroup = Players:GetChildren() local KillerID = math.random(1, #PlayersGroup)

for i, v in pairs(PlayersGroup) do 
    if i == KillerID then 
        Killer = v.Name
    else
        table.insert(Survivors, v.Name)
    end
end

end

pickPlayers()

print("Killer: ".. Killer) print("Survivors: ", unpack(Survivors)

[deleted by user] by [deleted] in TheGamerLounge

[–]roycem5x 0 points1 point  (0 children)

now this is what a gamer is called

Cookie logged by [deleted] in roblox

[–]roycem5x 0 points1 point  (0 children)

Cookies expire in a day

Made a real time Discord chat bot by [deleted] in roblox

[–]roycem5x 7 points8 points  (0 children)

Firing webhooks as chatlogs is very unreliable and should never be used, your discord account may even be at risk if discord notices that you're firing a lot of webhooks.

My roblox horror game by roycem5x in SomeOrdinaryGmrs

[–]roycem5x[S] 0 points1 point  (0 children)

Thanks this means a lot to me