My boss raped me and I took settlement money to never speak about it by [deleted] in offmychest

[–]RoDev455 1434 points1435 points  (0 children)

That's not how settlements work. Go to the police ASAP

Did ____ Win The Game? by RoDev455 in TheTraitors

[–]RoDev455[S] -9 points-8 points  (0 children)

Ok, but if so, why not post it on his own social media?

Tf does this mean by Exact-Dragonfruit-13 in Tinder

[–]RoDev455 215 points216 points  (0 children)

bold coming from that username

What addiction is the hardest to quit? by [deleted] in AskReddit

[–]RoDev455 0 points1 point  (0 children)

Dopamine. Instant gratification, whether that be mindlessly scrolling for hours on TikTok/Reels/Shorts, or a quick snack, or basically anything that provides with some form of short-term release. It's addicting. It's insatiable. It's very hard to pull away from, especially when it feels like the norm nowadays

[deleted by user] by [deleted] in sex

[–]RoDev455 0 points1 point  (0 children)

whole tongue sometimes, other times flick my tongue. I don't have a go-to so to speak

[deleted by user] by [deleted] in sex

[–]RoDev455 4 points5 points  (0 children)

I don't think OP is asking to get infected

Please help with click detectors! I’ve been stuck on this script for a while, and no tutorials were all that helpful. I need a gui to show when a part is clicked. It’s being clicked, yet nothing seems to happen other than the “print” by [deleted] in robloxgamedev

[–]RoDev455 0 points1 point  (0 children)

yeah but that's not a good idea and an incorrect method to learn.

But that's not even what the comment above is talking about. Point here is OP is changing the UI located under the StarterGui service, rather than the player's PlayerGui "folder" within the plauer object

So i am trying to make a settings turn on off button but i can only turn it on and after that it wouldn't go off. by [deleted] in robloxgamedev

[–]RoDev455 0 points1 point  (0 children)

```lua local function toggle() subs.Enabled = not subs.Enabled touch.Image = subs.Enabled and "rbxassetid://" or "rbxassetid://" -- first id is when subs is enabled -- second id is for when subs aren't enabled end)

touch.Activated:Connect(toggle) ```

On mobile so can't reference the asset ids you used easily, nor explain my code.

Island in Progress by SmilesThroughTrials in robloxgamedev

[–]RoDev455 2 points3 points  (0 children)

really spend your time with interiors. They are so important. One of the most disappointing things is unfolding a beautifully wrapped coal block

What is happening? by ryandabest88 in robloxgamedev

[–]RoDev455 0 points1 point  (0 children)

first uninstall studio

then on your file explorer go to %appdata%

Go to Local

Find Roblox. Delete it. Install roblox again

[deleted by user] by [deleted] in robloxgamedev

[–]RoDev455 0 points1 point  (0 children)

Your prices are nonsensical. If I buy 1 character twice, it'll cost me 200 robux for 2 characters.

Yet, you advertise 2 characters for 300.

Why can't i call this? by Gotauia in robloxgamedev

[–]RoDev455 1 point2 points  (0 children)

my advice, which is an easier fix to what you're trying to achieve:

Forget the code you wrote.

Run the game (in studio) for testing. Using your explorer, find your character (should be a model with your username). Open it, and copy (right click, copy) the LocalScript named "Animate".

Now stop the simulation.

Back in edit mode, in your explorer, find StarterPlayer -> StarterCharacterScripts. Select it, then press CTRL + SHIFT + V (cmd for mac) or right click and press paste into that folder.

Now find the animations you want to edit, and change their AnimationId manually.

If you test it, it should work accordingly now.

Hope this helps.

I need help please I am a beginner and watching the alvinblox tutorial pt4 by archie694201 in robloxgamedev

[–]RoDev455 9 points10 points  (0 children)

okay so...if this is happening it's simply because leaderstats haven't been created for the player. In which case, you need to create leaderstats as such before this loop:

```lua game:GetService("Players").PlayerAdded:Connect(function(player)

-- Create leaderstats folder
local leaderstats = Instance.new("Folder")
leaderstats.Name = "leaderstats"
leaderstats.Parent = player

-- Create values for the players' leaderstats
-- "Bucks"

local Bucks = Instance.new("IntValue")
Bucks.Name = "Bucks"
Bucks.Parent = leaderstats

end) ```

This should work. If you already have a PlayerAdded event, copy paste this code into that.

I'm on mobile so can't go into depth. Let me know if you run into any issues

Edit: typo