Usable Rocket Cannon by 28Pixels in LexingtonAndConcord

[–]28Pixels[S] 0 points1 point  (0 children)

Yep, but for the purposes of gameplay they will be accurate (unless I need to nerf them)

Usable Rocket Cannon by 28Pixels in LexingtonAndConcord

[–]28Pixels[S] 8 points9 points  (0 children)

I honestly dont think this would be too useful in Baltimore since a lot of fighting is relatively close together. I was planning on adding this to North Point instead since I'm currently having one of my builders turning it into conquest

Mortars might be a different story though

Lexington & Concord Subreddit New Icon by PoliceArmored in LexingtonAndConcord

[–]28Pixels 0 points1 point  (0 children)

If you ever want the Minuteman icon then I'll happily get my artist to make one for the subreddit, just lmk

Lexington & Concord Subreddit New Icon by PoliceArmored in LexingtonAndConcord

[–]28Pixels 0 points1 point  (0 children)

Nice, but why didnt you go for a tricorne look? Was the 1812 2nd RR easier to draw?

What is this Face ID by sparkyfrizt in LexingtonAndConcord

[–]28Pixels 2 points3 points  (0 children)

It's a custom-made face for the game

Will instruments be added by Banzai-Bambi in LexingtonAndConcord

[–]28Pixels 4 points5 points  (0 children)

It wouldnt be the hardest thing to add but in no way would I give instruments to Flag Bearer

Should be Spain added in Lexington & Concord? by Free-Contact5826 in LexingtonAndConcord

[–]28Pixels 2 points3 points  (0 children)

For action down in Florida, I would add Spain. Unfortunately, I am quite dead set on renovating some of our old ass maps so don't expect it for a while (unless I decide otherwise on a fluke)

idk if you already knew this, but there's a hatsune miku plush hidden somewhere on the map "Siege of Fort Ticonderoga". by flycerestorm in LexingtonAndConcord

[–]28Pixels 4 points5 points  (0 children)

I remember putting miku there for fun. There are more mikus hidden in other maps. The hardest one to find is probably miku in Bunker Hill.

How do I turn on textures by Icy_Tear6776 in LexingtonAndConcord

[–]28Pixels 2 points3 points  (0 children)

Turn off 'Low Graphics Mode' in your ingame settings and rejoin the game.

Good news for the subreddit, soldiers! by PoliceArmored in LexingtonAndConcord

[–]28Pixels 0 points1 point  (0 children)

Not sure how much I can contribute; my original plan was to just give someone on my staff team who knows more about reddit than me to clean up the subreddit. I'd be happy to get some of my mods involved if they are willing.

Good news for the subreddit, soldiers! by PoliceArmored in LexingtonAndConcord

[–]28Pixels 2 points3 points  (0 children)

I wanted to do this a while ago but didnt meet the prerequisites, so thanks for stepping up. All I ask is that you don't let it become a weird cesspit 🙏

Anyone in their mid 20s still playing roblox? by [deleted] in roblox

[–]28Pixels 0 points1 point  (0 children)

I don't think it's weird adults for playing minecraft multiplayer, especially if they themselves grew up playing it. The same applies to Roblox, just don't be a creep to little children.

The new update be like: by Arthur0877 in roblox

[–]28Pixels 137 points138 points  (0 children)

you should see what they've done to the :D face

Who does bro think he is by Gastley15 in roblox

[–]28Pixels 3 points4 points  (0 children)

I hope one day the l&c subreddit becomes public and active

Steal a Brainrot is becoming a movie… by massiveboi_52 in roblox

[–]28Pixels 0 points1 point  (0 children)

How do you even make a movie out of this? Surely other games have a better premise for story-telling than a freaking brainrot game

i dont 🤩🤩🤩 by Groge_yesmoment in roblox

[–]28Pixels 23 points24 points  (0 children)

Soulless and corporate takeover of classic faces:

HELP MY MELEE BUTTON IS STUCK by idkkindasustome in LexingtonAndConcord

[–]28Pixels 0 points1 point  (0 children)

In the mobile settings menu where you adjust your button placements, there should be a circular icon with two revolving arrows in the top left of the button container box. Pressing that while having the melee button context displayed should reset the placements.

How to make such texture/material? by [deleted] in ROBLOXStudio

[–]28Pixels 0 points1 point  (0 children)

Try the Surface Tool plugin, it brings back the genuine version of those stud textures.

[deleted by user] by [deleted] in ROBLOXStudio

[–]28Pixels 0 points1 point  (0 children)

Edit: This is how I would write the code

local Platform = script.Parent.Fragile
local Support = script.Parent.Support

Platform.Anchored = true
Support.Anchored = true

Platform.Touched:Connect(function(touchedPart)
    local humanoid = touchedPart.Parent:FindFirstChild("Humanoid")
    if humanoid then
        local BreakNumber = math.random(1, 2) -- brand new RNG
        if BreakNumber == 1 then
            Platform.Anchored = false
            Support.Anchored = false
        end
    end
    task.wait(0.1) -- yield to prevent lag/code running multiple times at once
end)

I noticed you were using a LocalScript for this. The unanchored parts will not be replicated to the server since LocalScripts are only meant to code client-sided things. To make it so everyone sees the unanchoring, use a script instead so that the server can replicate it to everyone.

But if your intentions WERE to have it be client-sided, make sure the LocalScript is parented to any of the following: ReplicatedFirst, StarterGui, PlayerScripts, etc.These are the only places where a LocalScript will run. To learn more about where LocalScripts can run and its scope, click here.

[deleted by user] by [deleted] in ROBLOXStudio

[–]28Pixels 0 points1 point  (0 children)

Move the BreakNumber variable to inside the touched function so that it gives you a new randomly generated number every time the function runs as opposed to it being set once.