บทความ

กำลังแสดงโพสต์จาก มิถุนายน, 2024

ความปลอดภัยต้องมาก่อน สร้างสายบันจี้จั๊มพ์ระหว่างร่วง

รูปภาพ
  สัมผัสประสบการณ์ได้ที่ https://www.roblox.com/th/games/17020178329/unnamed

สร้างระบบ Charge พลังเตะบอล

รูปภาพ
  ขอกำหนดกติกาก่อนน้าาาา แล้วจะเปิดให้เล่นจ้า

สอนเขียน Script Victory Point

รูปภาพ
  สร้างโมเดลที่มีสองเสา Beam แทนผ้าใบ และแอบมีเซนเซอร์อยู่ที่ฐานโดยซ่อนเอาไว้ (Transparent=1) ใต้ SensorPart ใส่ Script ตามนี้ครับ local SensorPart = script.Parent local Beam = SensorPart.Parent.Beam local ParticleEmitter1 = SensorPart.Parent.LeftPart.ParticleEmitter local ParticleEmitter2 = SensorPart.Parent.RightPart.ParticleEmitter local sound = SensorPart:FindFirstChild("Gun Shot") local win = false SensorPart.Touched:Connect(function(otherPart) if win then return end if otherPart.Parent:FindFirstChild("Humanoid") then win = true sound:Play() --เล่นเสียงพลุ Beam:Destroy() --ปลดแผ่นผ้า ParticleEmitter1.Enabled = true --ปล่อยพลุ 1 ParticleEmitter2.Enabled = true --ปล่อยพลุ 2 end end)