About Mysticdevex Sound Effects

๐ŸŽฎ Day 1 of learning how to script in Roblox Studio! Made a part grow on click, destroy objects, and even turn invisible on touch ๐Ÿ˜ฎ Excited to keep going โ€“ this is just the beginning! ๐Ÿ’ปโœจ #day1 #fyp #viral
Learn how to make a working tool pickup system in Roblox Studio! ๐Ÿ› ๏ธ๐Ÿ’ก Using ProximityPrompts and a bit of scripting ๐Ÿค–, youโ€™ll be able to grab tools. Try it in your own game! ๐Ÿ”งโš™๏ธ#day1 #coding #robloxgames Script from the video: local handle = script.Parent local sword = handle.Parent local proxPrompt = handle:FindFirstChild("ProximityPrompt") local touchInterest = handle:FindFirstChild("TouchInterest") touchInterest:Destroy() proxPrompt.Triggered:Connect(function(plr) local backpack = plr:FindFirstChild("Backpack") if backpack then sword.Parent = backpack proxPrompt.Enabled = false end end)
๐Ÿ’ฃ Day 8 of learning Roblox scripting! Today: deadly mines guarding a pizza ๐Ÿ•, a strength-giving tool ๐Ÿ’ช with sound effects, and a stretching platform that moves and grows at the same time! What should I build next? โฌ‡๏ธ๐Ÿ’ก#robloxgames #viral #fyp --Services local tweenService = game:GetService("TweenService") --Variables local minesFolder = game.Workspace:FindFirstChild("MinesFolder") local waitTime = 0.1 local mineTouched = false local function mineActivate(mine, player) coroutine.wrap(function() if mineTouched then return end mineTouched = true mine.Color = Color3.fromRGB(229, 219, 112) task.wait(.1) mine.Color = Color3.fromRGB(213, 165, 70) task.wait(.1) mine.Color = Color3.fromRGB(255, 77, 64) task.wait(.1) for , part in pairs(workspace:GetDescendants()) do local hum = part.Parent:FindFirstChild("Humanoid") if part:IsA("BasePart") and hum then local explosion = Instance.new("Explosion") explosion.Name = "explosion" explosion.Parent = mine explosion.Position = mine.Position local distance = (part.Position - mine.Position).Magnitude if distance < 30 then local HumanoidRootPart = part.Parent:FindFirstChild("HumanoidRootPart") if HumanoidRootPart then local tweenInfo = TweenInfo.new(waitTime, Enum.EasingStyle.Linear, Enum.EasingDirection.In, 0, false, 0) local goal = { CFrame = HumanoidRootPart.CFrame * CFrame.new( math.random(-50,50), math.random(75,150), math.random(-50,50)) } local newTween = tweenService:Create(HumanoidRootPart, tweenInfo, goal) newTween:Play() task.wait(waitTime) hum.Health = 0 end end end end mine:Destroy() end)() end for , mine in pairs(minesFolder:GetChildren()) do mine.Touched:Connect(function(hit) local hum = hit.Parent:FindFirstChild("Humanoid") if hum then mineActivate(mine, hit.Parent) end end) end
๐Ÿ’ฌ Series update! After 5 days of scripting on Roblox, Iโ€™ve realized some viewer ideas are a bit too advanced for my current skills. For now, Iโ€™ll focus on learning the basics โ€” so I can build a stronger foundation before tackling the harder stuff! ๐Ÿ”ฅ Follow to keep up with the journey ๐Ÿ“Œ#day1 #coding #robloxgames
How to make a ClickDetector in Roblox Studio! ๐Ÿ–ฑ๏ธ In this tutorial, Iโ€™ll show you step by step: How to add a part you can click How to write a simple script in ServerScriptService This is a super beginner-friendly way to start making interactive objects in your Roblox games. #robloxfyp #robloxstudio Full script used in this tutorial with explanations: local part = workspace:FindFirstChild("Part") -- Find part in workspace local clickDetector = part:FindFirstChild("ClickDetector") -- Find ClickDetector in the part clickDetector.MouseClick:Connect(function() -- Check if player clicked the part part.Color = Color3.fromRGB(255,0,0) -- Change part's color to red end)
Day 14(last) of learning Roblox scripting! ๐Ÿš€ Quacks, levels, multipliers, and popups โ€“ all in one day. Iโ€™m having so much fun building this, canโ€™t wait to share more! ๐Ÿฆ†โœจ New series is coming!๐Ÿ•น๏ธ #day1 #robloxstudio #fyp
โšก Day 6 of learning how to script on Roblox! Made a smooth moving part with tweens ๐Ÿ› , built a random part spawner ๐ŸŽ, and turned the floor into deadly lava after a 10-second countdown ๐ŸŒ‹๐Ÿ’€ This one was fun to make โ€” what should I add for Day 7? ๐Ÿ‘‡ #robloxgames#fyp #viral
๐Ÿš€ How to make a moving Part in Roblox Studio โ€“ quick tutorial! ๐ŸŽฏ In this video, I show step-by-step how to insert a Part, change its size, position, and color, and then add a script that moves it. ๐Ÿ“Œ If youโ€™re just starting out with scripting in Roblox, be sure to check out my main series where I learn roblox coding from scratch! ๐Ÿ“œ The code + explanation can be found below: -- Services local TweenService = game:GetService("TweenService") -- Variables local part = script.Parent -- Tween settings local tweenInfo = TweenInfo.new( 1, -- duration (seconds) Enum.EasingStyle.Linear, -- movement style Enum.EasingDirection.InOut, -- easing direction -1, -- repeat count (-1 = infinite) true, -- reverse after each tween 0 -- delay before starting ) -- Goal (final property values) local goal = { Position = Vector3.new( part.Position.X + 50, -- X target position part.Position.Y, -- Y stays the same part.Position.Z -- Z stays the same ) } -- Create and play tween local tween = TweenService:Create(part, tweenInfo, goal) tween:Play() --[[ TweenInfo.new parameters: 1. Time to complete the tween (seconds) 2. EasingStyle (how the motion feels) 3. EasingDirection (In, Out, InOut) 4. Repeat count (-1 = infinite, 0 = once) 5. Reverse tween after each cycle (true/false) 6. Delay time before starting (seconds) Goal table: A set of properties with target values for the tween. In this example, only Position changes. ]] #robloxgames #viral #tutorial moving parts script
Day 1 of making my own Roblox incremental game ๐ŸŒฑ Started with a temporary lobby, crop collecting, leveling system & popups. Excited to see where this goes! ๐Ÿš€#day1 #robloxgames #fyp
Day 13 of learning how to script on Roblox!๐Ÿ”ฅ In this episode I built a boss with 3 different attacks: โšก Circle lasers around the boss โ˜„๏ธ Falling projectiles from the sky ๐Ÿ’ฅ A close-range area attack On top of that, I created a saving system for ducks โ€“ now your progress wonโ€™t reset when you leave the game. What should I add to the boss fight next?โ€#day1 #robloxstudio #fyp