にだりんご【荒らしの荒らし】

改名しました
アホスケ→にだりんご
これからもよろしくお願いします。

それぞれのテーマで不定期投稿をしています!🎥
チャンネル登録、いいねよろしくお願いします👍

VR系たまにやるので見てね。
小5です。好きな映画は「Scream(1996)」がシリーズ化した、スクリームシリーズです。
好きなゲームはMelon sandbox(by playducky)と、Robloxと、Blade and sorcery:nomad(by warpfrog)です。
ADHD患者です。会話の輪に入ることが苦手です。大勢の前で発表するのも苦手、リアル世界ではいろいろ終わってる人です。
現時点で小5です。カヒルやクソレシア、バカンなどの荒らしのコメ欄を荒らそうと思っています


にだりんご【荒らしの荒らし】

local displayPart = workspace.S500系.carriage1["S500系一号車"]:WaitForChild("DisplayPart")
local surfaceGui = displayPart:WaitForChild("SurfaceGui")
local textLabel = surfaceGui:WaitForChild("TextLabel")

local speedChecker = workspace.S500系.carriage1["S500系一号車"]:WaitForChild("SpeedChecker")

while true do
local speed = speedChecker.Velocity.Magnitude * 3.6 -- studs/s → km/h
textLabel.Text = string.format("速度: %.1f km/h", speed)
wait(0.1)
end

1 day ago | [YT] | 1

にだりんご【荒らしの荒らし】

-- 速度を取得するパーツ
local trainPart = workspace:WaitForChild("S500系")
:WaitForChild("Carriage")
:WaitForChild("S500系一号車")

-- メーターのTextLabel
local textLabel = script.Parent:WaitForChild("SurfaceGui"):WaitForChild("TextLabel")

-- 速度表示ループ
while true do
-- Velocity.Magnitude は Stud/s → km/h に変換
local speed = trainPart.Velocity.Magnitude * 0.28
textLabel.Text = string.format("%.1f km/h", speed)
task.wait(0.1)
end-- 速度を取得するパーツ
local trainPart = workspace:WaitForChild("S500系")
:WaitForChild("Carriage")
:WaitForChild("S500系一号車")

-- メーターのTextLabel
local textLabel = script.Parent:WaitForChild("SurfaceGui"):WaitForChild("TextLabel")

-- 速度表示ループ
while true do
-- Velocity.Magnitude は Stud/s → km/h に変換
local speed = trainPart.Velocity.Magnitude * 0.28
textLabel.Text = string.format("%.1f km/h", speed)
task.wait(0.1)
end

1 day ago | [YT] | 1

にだりんご【荒らしの荒らし】

local train = script.Parent.Parent:FindFirstChild("VehiclePart") -- 動いてるパーツ
local textLabel = script.Parent.SurfaceGui:FindFirstChild("TextLabel")

while true do
if train and textLabel then
local speed = train.Velocity.Magnitude * 0.28 -- Roblox単位(Stud/s)→km/h換算
textLabel.Text = string.format("%.1f km/h", speed)
end
task.wait(0.1)
end

1 day ago | [YT] | 0

にだりんご【荒らしの荒らし】

今日午後4時から運行会あります。

6 days ago | [YT] | 1

にだりんご【荒らしの荒らし】

潮野鉄道運行会を11/8に開催します。
また、11/8まで社員募集を行っています。
コメントで発言するか、グループに参加して発言してください。
www.roblox.com/ja/communities/16605727/Asu-City-Ra…
↑グループ
↓ゲーム
www.roblox.com/ja/games/6789871905/unnamed

1 week ago (edited) | [YT] | 1

にだりんご【荒らしの荒らし】

辛みそきん買えました!
この日に発売とは知らなくて、偶然手に入りました。
そして大量に買っていく転売ヤーが何人か。

2 weeks ago | [YT] | 1

にだりんご【荒らしの荒らし】

```local groupID = "16605727"

game.Players.PlayerAdded:Connect(function(player)
if not player:IsInGroup(groupID) then
player:Kick("グループに参加してから再度プレース入り直してください。")
end
end)```

2 weeks ago | [YT] | 1

にだりんご【荒らしの荒らし】

local remote = game.ReplicatedStorage:WaitForChild("TriggerSoundEvent")

remote.OnClientEvent:Connect(function(isIn, trigger)
local sound = trigger:FindFirstChild("Sound")
if not sound then return end

if isIn then
if not sound.IsPlaying then
sound:Play()
end
else
if sound.IsPlaying then
sound:Stop()
end
end
end)

3 weeks ago | [YT] | 2