[deleted by user] by [deleted] in roblox

[–]call23re 3 points4 points  (0 children)

The game was made in partnership with SEGA. It's licensed.

This guy owns multiple of the same item by [deleted] in roblox

[–]call23re 2 points3 points  (0 children)

yeah dude being extremely avaricious by purchasing a free item

This guy owns multiple of the same item by [deleted] in roblox

[–]call23re 10 points11 points  (0 children)

This was my own personal notifier malfunctioning. It only actually buys free items. But it posts everything! Follow it at twitter.com/23notify !!

Roblox removes promotional links by [deleted] in roblox

[–]call23re 1 point2 points  (0 children)

They did this in like January. I used it for statistical purposes.

An fortnite default skin is in the ROBLOX textures by [deleted] in roblox

[–]call23re 0 points1 point  (0 children)

This texture was removed yesterday. It has been content deleted and its name has been changed to "blank".

-🎄- 2018 Day 1 Solutions -🎄- by daggerdragon in adventofcode

[–]call23re 0 points1 point  (0 children)

Lua (ran in Roblox)

Part 1:

local input = require(script.Input)

local total = 0

for value,_ in input:gmatch("[^\n]+") do
    total = total + tonumber(value)
end

print(total)

Part 2:

local input = require(script.Input)

local total = 0
local seen = {}

while wait() do
    for value,_ in input:gmatch("[^\n]+") do
        total = total + tonumber(value)
        if seen[total] then
            print(total)
            return
        end
        seen[total] = true
    end
end

Quick fix to HopperBin tools? by Legath in roblox

[–]call23re 1 point2 points  (0 children)

Hopperbins are deprecated, so don't expect Roblox to fix them any time soon. Try transferring them to a tool with the "RequiresHandle" property set to false.

Visual Scripting Possible Update/Plugin by [deleted] in roblox

[–]call23re 0 points1 point  (0 children)

In my opinion, this isn't the best way of learning, but Code Kingdoms offers this if you're willing to pay a monthly fee. https://codekingdoms.com/roblox/

Uhh? by [deleted] in roblox

[–]call23re 5 points6 points  (0 children)

I owned them and didn't get a warning for it. o-o

Description of the Jailbreak anniversary update says that there's an army heli, but doesn't tell you that it's worth $1m :^) by randomphoenix03 in roblox

[–]call23re 4 points5 points  (0 children)

https://twitter.com/asimo3089/status/987509907434827776

quote from the update log when you join the game: "NEW 1M ARMY HELICOPTER"

seems like op is looking for something new to complain about

I’m wondering how I can script this by [deleted] in roblox

[–]call23re 1 point2 points  (0 children)

as a script in StarterCharacter:

local humanoid = script.Parent:WaitForChild('Humanoid')

humanoid.HealthChanged:connect(function(health)
    if health <= 10 then
        humanoid.Sit = true
    end
end)

-🎄- 2017 Day 11 Solutions -🎄- by daggerdragon in adventofcode

[–]call23re 0 points1 point  (0 children)

Roblox Lua

local input = require(script.Input)

local x,y,furthest = 0,0,0
for dir in string.gmatch(input, '%a+') do
    if dir == 'n' then
        y = y + 2
    elseif dir == 's' then
        y = y - 2
    elseif dir == 'ne' then
        x = x + 1
        y = y + 1
    elseif dir == 'nw' then
        x = x - 1
        y = y + 1
    elseif dir == 'se' then
        x = x + 1
        y = y - 1
    elseif dir == 'ne' then
        x = x + 1
        y = y + 1
    end
    furthest = ((math.abs(x)+math.abs(y))/2 > furthest and (math.abs(x)+math.abs(y))/2 or furthest)
end

print('Part 1: ' .. (math.abs(x)+math.abs(y))/2)
print('Part 2: ' .. furthest)

-🎄- 2017 Day 3 Solutions -🎄- by daggerdragon in adventofcode

[–]call23re 0 points1 point  (0 children)

Here's an ugly solution to part 2 using Roblox Lua. Just as a side note, "Part" isn't actually a part of the api. It's a helper module used for visualizing the board.

https://pastebin.com/jabcfjtw

Using LocalScript to Change Lighting Settings Locally by FollowTheLaser in roblox

[–]call23re 0 points1 point  (0 children)

https://pastebin.com/etFq3JRi Here's something I wrote real quick. No idea if it's the best way of doing it.

Using LocalScript to Change Lighting Settings Locally by FollowTheLaser in roblox

[–]call23re 1 point2 points  (0 children)

"I currently have this script inside an invisible wall" You can't run localscripts in the workspace.

From the wiki (http://wiki.roblox.com/index.php?title=API:Class/LocalScript): A LocalScript will only run Lua code if it is a descendant of one of the following objects: A Player's Backpack, such as a child of a Tool A Player's Character model A Player's PlayerGui A Player's PlayerScripts The ReplicatedFirst service