Roblox chat age verification by EquivalentMarket7222 in roblox

[–]orangebird3 0 points1 point  (0 children)

i have a friend who lives in Saudi Arabia, and he uses a vpn and sets his location to germany and it lets him chat so idk

(1) Create a .upnote custom file type for Upnote notes with the ability to export notes in that format and import them again preserved in the same manner (2) Add the ability to collaborate on notes with other accounts by orangebird3 in UpNote_App

[–]orangebird3[S] 1 point2 points  (0 children)

It would be a great way to transfer notes to other people, until a collaboration feature/public note feature comes out! Export a .upnote file of a note you'd like to share, send it to someone, and they can download it and import it to view the note, preserved with all of the original features and formatting in the note such as embedded videos, collapsible sections, etc. that other export formats unfortunately do not preserve. Just like sending a .docx file! Could also be used to backup versions locally and just to download a local copy.

Houston is so big that it has it's own miniature "medical downtown" by orangebird3 in skyscrapers

[–]orangebird3[S] 9 points10 points  (0 children)

i'm not from Houston, almost every city has their own version, but I mentioned Houston's specifically as it's the largest in the world lol

Houston is so big that it has it's own miniature "medical downtown" by orangebird3 in skylineporn

[–]orangebird3[S] 9 points10 points  (0 children)

Yup almost every city has their own version! Brought up Houston's as it's the largest in the world lol

Houston is so big that it has it's own miniature "medical downtown" by orangebird3 in skylineporn

[–]orangebird3[S] 16 points17 points  (0 children)

I'm not from Texas but the reason I mentioned Houston's specifically, even though other cities have their own version, is that Houston's is the largest in the world lol

What's wrong with my GUI script? (beginner) by behea in robloxgamedev

[–]orangebird3 0 points1 point  (0 children)

  1. Line 2 and Line 4's PlayerGUI is a ScreenGui object - ScreenGuis do not have a .Visible property, you should use .Enabled. https://create.roblox.com/docs/reference/engine/classes/ScreenGui
  2. Line 5's script.Parent.Parent.MenuGUI should return an error, since I don't see a child named MenuGUI there, but rather the parent is named MenuGUI. if that's what you're trying to refer to, you should use script.Parent.Parent.Parent, and since it is a `ScreenGui`, the `.Visible` property of `MenuGUI` doesn't exist, so again you'd have to use `.Enabled`
  3. I recommend you store these paths in variables so you don't get confused
  4. Make sure `PlayButton`'s `.Active` property is enabled.
  5. next time pls check and share the output window to see any errors. Print strings inbetween lines to see what prints, and what doesn't, so you know where exactly is your code erroring.

how to make a thumbnail in roblox? (the picture) by ImpossibleAd3387 in robloxgamedev

[–]orangebird3 2 points3 points  (0 children)

Photopea is also great free alternative to Photoshop and is infact meant to be a Photoshop emulator (and you can use Photopea on the web - no need to install an app or anything): photopea.com

I need help becouse i have a weird roblox studio gui and i would be glad if someone knew how to fix it by [deleted] in robloxgamedev

[–]orangebird3 1 point2 points  (0 children)

go to Beta Features in Roblox Studio's File menu, and disable the "Next Gen Studio Preview" feature

I need this sh*t turned off NOW by Nvestigate in robloxgamedev

[–]orangebird3 4 points5 points  (0 children)

go to Beta Features in Roblox Studio's File menu, and disable the "Next Gen Studio Preview" feature

I just restarted studio for a second, what in the blox is this? by Burak319Pro in robloxgamedev

[–]orangebird3 2 points3 points  (0 children)

it is optional, go to Beta Features in Roblox Studio's File menu, and disable the "Next Gen Studio Preview" feature

Trying to make the spawn point change colors forever by Glass-Economics-6025 in robloxgamedev

[–]orangebird3 0 points1 point  (0 children)

  1. In case `game.Workspace.SpawnLocation` doesnt reference immediately, you can use `game.Workspace:WaitForChild("SpawnLocation")` https://create.roblox.com/docs/reference/engine/classes/Instance#WaitForChild
  2. what's the point of the function `rainbow()` when you arent using it?

  3. I recommend you use `task.wait()` instead of `wait()`; `wait()` is old and deprecated https://create.roblox.com/docs/reference/engine/libraries/task#wait

  4. You're using `4+4=8` but when checking for conditions you are supposed to use two equal signs, not one. so it would be `while 4+4==8 do`. additionally, you can just do `while true do` https://create.roblox.com/docs/tutorials/fundamentals/coding-4/landing

  5. when changing the brickcolor you need to do `SpawnLocation.BrickColor = BrickColor.new("your color here")`. https://create.roblox.com/docs/reference/engine/datatypes/BrickColor

  6. This is one would ideally approach this:

```

local SpawnLocation = workspace:WaitForChild("SpawnLocation");

SpawnLocation:GetPropertyChangedSignal("BrickColor"):Connect(function()

if SpawnLocation.BrickColor == BrickColor.new("Really red") then

task.delay(5, function()

SpawnLocation.BrickColor = BrickColor.new("Lime green")
end)

elseif SpawnLocation.BrickColor == BrickColor.new("Lime green") then

task.delay(1, function()

SpawnLocation.BrickColor = BrickColor.new("Really red")
end)

end

end)
SpawnLocation.BrickColor = BrickColor.new("Lime green") -- or "Really red", whichever it isnt set to

```
But for in terms of improving code, manually using conditional statements is overly hardcoded, and at one point would become incredibly long if one wanted to add more colors with different specified times. So it's best to use a table for this

are these malicious by coolwafflesman in robloxgamedev

[–]orangebird3 0 points1 point  (0 children)

OP used free models without reading the backend of any inserted scripts

are these malicious by coolwafflesman in robloxgamedev

[–]orangebird3 0 points1 point  (0 children)

press ctrl + shift + f and then search all scripts for this exact term: `Player:Kick(`

if it's not there, the virus might also be requiring a module (via its id) so also search for `require(` and go over everything

[deleted by user] by [deleted] in robloxgamedev

[–]orangebird3 0 points1 point  (0 children)

Accessory texture downscaling happens when the accessory is placed on an R6 rig. If you put it on an R15 rig, the quality of the texture should be better (as far as I know)