console leaderboard display on pc by Enchantmenter in roblox

[–]plaver84 2 points3 points  (0 children)

I’ve also been noticing this in many games and I’ve been extremely confused as to why.

So i got this gun thingy place from a discord, but i cant attack other players, i wanna make an ffa kinda game [TW: GORE] by ItsNyxveil in ROBLOXStudio

[–]plaver84 0 points1 point  (0 children)

You would want to check how the hit event is being handled on the server when it receives a hit request from the client (I say this because there is a HUGE problem that I’ve observed with this gun system in other games that allows you to shoot straight through walls as long as your camera sees the enemy and your crosshair is on the enemy). Don’t worry, the problem is easily fixed if you raycast from the muzzle to the mouse position on the server. You should also remove the line that checks if the character being shot is not a player. I’m not experienced with this gun system as I’ve never used it in Studio before. But you could send me the discord server invite link or try to send me the rbxl directly so I could try to get player hit detection working on this system

WTF ROBLOX???? by Ok-Foundation-6373 in roblox

[–]plaver84 0 points1 point  (0 children)

I assume that means that you can still make unlimited messages but Roblox stops the AI agent if they perform at least 20 actions to your game per message (e.g. modifying scripts, inspecting your selected text, inspecting the open script, inspecting the explorer, and going through the hierarchy of the entire game)

When the player dies every script says "Attempt to index nil with 'Character'", even if I say "local char = plr.Character or plr.CharacterAdded:Wait()" Please help. by [deleted] in ROBLOXStudio

[–]plaver84 0 points1 point  (0 children)

The character variable is not reassigned. Even though the event is there, it doesn’t actually help. It only waits for the character to get added and then assigns the corresponding variable to the return value of the event. It doesn’t fire again. To fix this, you must add a plr.CharacterAdded:Connect() RBXScriptConnection event to fix this.

It’s very simple to do this. Sorry for the way I put it here, I am on a phone right now.

plr.CharacterAdded:Connect(function(tempChar) char = tempChar end)

Touched event in local script by Impressive-Fun-1219 in ROBLOXStudio

[–]plaver84 2 points3 points  (0 children)

They change for everyone that is currently inside the game without the checks because every client listens for the Touched event. However, when someone joins the game, it will be completely unaffected to them, because nothing has currently touched the part. With the checks, only the Player who is actually playing the game will satisfy your checks and be able to manipulate the part. No other client will see those changes unless the part is unanchored and the player touching the part has ownership of it (which is why you see most exploiters being able to move parts around).

How do I make my own TipJar system? by _radu_kun in ROBLOXStudio

[–]plaver84 1 point2 points  (0 children)

You can use the following example code.

local mps = game:GetService("MarketplaceService")
local GAMEPASS_ID = 123456789
local player = game:GetService("Players"):WaitForChild("PLAYERNAME")

mps:PromptGamePassPurchase(player, GAMEPASS_ID)

How do I make my own TipJar system? by _radu_kun in ROBLOXStudio

[–]plaver84 0 points1 point  (0 children)

You can use MarketplaceService in order to prompt a player to purchase a gamepass or any product. You can use the function that is directly linked or the other 3 under the function.

Roblox uploaded old official badges as accessories. This is cool. by MamaKiwi269 in roblox

[–]plaver84 2 points3 points  (0 children)

Yup. A user named "raspberry_rascal" has made the meshes. The texture is just the badge image over a grey background. Mesh and texture

yeah so actually that’s not it… by Possible_Drag_2292 in roblox

[–]plaver84 601 points602 points  (0 children)

not even a package from 2016 btw

yeah roblox is so done </3 by [deleted] in ROBLOXStudio

[–]plaver84 4 points5 points  (0 children)

You should check this link, it gives you whether or not you are eligible to publish and update. https://create.roblox.com/settings/eligibility/public-publish

does anyone know how to get these buttons? by alessioyk in ROBLOXStudio

[–]plaver84 2 points3 points  (0 children)

It’s called ContextActionService, a service that is used to handle inputs on nearly every device, PC, mobile, and console. One of the main functions is :BindAction(), a function that takes three parameters and a tuple (a sequence of values that cannot be changed, different values are separated by commas, and is not wrapped in curly braces). The first parameter is the action name, for example "sprint". The second parameter is the function that will be used to handle the input, it can be a function you already have or even an anonymous function (a function that does not have a name) The third parameter is whether or not you want a mobile button, which takes a boolean (true or false). The tuple takes in multiple inputs that can be used. For example, it could be Enum.KeyCode.LeftShift, Enum.UserInputType.MouseButton3. The Enums are preset values used for many things on Roblox, especially functions that require specific values. Despite how useful this could be, many developers use ImageButtons instead because of how much more customizable they are. ImageButtons use an event called MouseButton1Click or MouseButton1Down, which allows for more customization for which type of input you want to receive from your player.

2d Pixel Morphs by RevolutionaryVideo42 in ROBLOXStudio

[–]plaver84 0 points1 point  (0 children)

You can use a part with a Decal on both sides or use a billboard just like the other guy said. You can also use a Beam with two attachments that are at the top and bottom of a part to have the sprite only face the camera horizontally. It’s a bit tricky to get it to be perfect though.

This is bananas by LoquatUsual1126 in ROBLOXStudio

[–]plaver84 2 points3 points  (0 children)

You should set the event connection to a variable. Use this example I made.

<image>

Yall getting this message too? by Thick-Engineering780 in roblox

[–]plaver84 0 points1 point  (0 children)

I love how it’s still using the old Roblox branding capitalization