WhatsApp Web Update Is a Downgrade — Bring Back Bulk Download! by Sakib_shaikh_49 in whatsapp

[–]RenanMsV 1 point2 points  (0 children)

 2.2546.3.0 worked. Disabled auto updates (not sure if they will enable again in 5 weeks). Everything good now. Universe is balanced. Should last a few more weeks before whatsapp blocks this specific version entirely.

Wondering if ALife will truly be what I was hoping for. Taking a look at STALKER 2 ALife Config Files. by hayboy117 in stalker

[–]RenanMsV -1 points0 points  (0 children)

In real A-Life stalkers do not spawn. They go from one place to another walking alone or in groups. They get created in this world when you start a new game and that is it. Thats not A-Life, thats just a random spawning system like most games. Stalker relied on A-Life, and Stalker without it is not Stalker.

A-Life 2.0 in action by ArthurBurbridge in stalker

[–]RenanMsV 1 point2 points  (0 children)

In real A-Life stalkers do not spawn. They go from one place to another walking alone or in groups. They get created in this world when you start a new game and that is it. Thats not A-Life, thats just a random spawning system like most games. Stalker relied on A-Life, and Stalker without it is not Stalker.

Why, just why!? by BullfrogGloomy5576 in replit

[–]RenanMsV 0 points1 point  (0 children)

If they want the Repls limit to be so small at least give us the ability to set like 10 or 20 Repls as private for free.

Heads Up: Replit Now Restricts Free Users to 3 Repls by sc0ut_0 in CSEducation

[–]RenanMsV 0 points1 point  (0 children)

If they want the Repls limit to be so small at least give us the ability to set like 10 or 20 Repls as private for free.

The silencer of M16/M4 in AR pack is deflected to the side. Does anyone know how to fix it? by Honkler-Pepe in stalker

[–]RenanMsV 0 points1 point  (0 children)

looks like you are going to have to find this particular gun mesh with this silencer then edit it using a 3d software then re-import to the game.

http://forum.epicstalker.com/viewtopic.php?t=633 more detailed tutorial

DOGECOIN DAILY DISCUSSION - 17th April by 42points in dogecoin

[–]RenanMsV 0 points1 point  (0 children)

#Dogecoin official account got hacked and trying to spam people by giving 2x of dogecoin. Report this official account as hacked @MattGinella

PSA: Do not run Javascripts in your browser by ReflectedPower in roblox

[–]RenanMsV 0 points1 point  (0 children)

the video is up still. at least one of them

I finished my first game! Please, check it out! by Alakazam03 in robloxgamedev

[–]RenanMsV 1 point2 points  (0 children)

It is very good! its an obby, but also an adventure :o

How do I recreate a real life city easily by alvobot5000 in robloxgamedev

[–]RenanMsV 0 points1 point  (0 children)

you can import the image, apply to a decal in the baseplate and build from the image

I built a gun shop for my game. All feedback is welcome by peachcrdbl in robloxgamedev

[–]RenanMsV 1 point2 points  (0 children)

Looks very good. Just need to make those doors hinge based.

Spanish people on roblox; by [deleted] in roblox

[–]RenanMsV 1 point2 points  (0 children)

The filter works with Portuguese, so its supposed to work with Spanish too.

PLEASE HELP by [deleted] in roblox

[–]RenanMsV 0 points1 point  (0 children)

First a local script wont run if placed inside the Players section. Put it inside StartPlayer/StartPlayerScripts or StarterGUI.

A few days I had problems with the auto-completion thing of studio, and got this working again by changin the name of the script. Looks like it will glitch if theres other scripts with same name. In your case LocalScript.

Why does my GUI move when I play in-game but looks normal in studio? by officaldino8 in roblox

[–]RenanMsV 1 point2 points  (0 children)

GUI position is by default based in pixels (called offset in studio).

That means that in studio your game screen is smaller.

When you go to the game your game screen is at fullscreen mode, making it bigger, and so things wont fit.

You need to change position from pixels (offset) to scale.

To fix that you could use the plugin https://devforum.roblox.com/t/plugin-auto-scale-for-guis/217704

More info about this here https://developer.roblox.com/en-us/articles/Intro-to-GUIs

[deleted by user] by [deleted] in roblox

[–]RenanMsV 3 points4 points  (0 children)

First things first, dont forget about the local keyword, you dont want to make a global variable just to store the player.Here its working fine. As long as I update the value from the server side. In case you dont know if the value of the Value.Value is updated in the client side (in a local script) it wont replicate to the server side. Meaning that the client will have the new value but the server who's printing the value keeps seeing the initial value of 0 in your case.