pizzaloiopo

Elemental Battlegounds

Jun 10th, 2018
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. Just a quick easy script to level up in safe zone:
  2. ปล่อยสกิลได้ใน save zone ให้เลือกชื่อธาตุและ สกิลที่จะปล่อยลงในช่อง
  3. Code:
  4. while wait(0.5) do
  5. local A_1 = "ElementName"
  6. local A_2 = "Skill"
  7. local Event = game:GetService("ReplicatedStorage").Remotes.DoClientMagic
  8. Event:FireServer(A_1, A_2)
  9.  
  10. local A_1 = "ElementName"
  11. local A_2 = "Skill"
  12. local Event = game:GetService("ReplicatedStorage").Remotes.DoMagic
  13. Event:InvokeServer(A_1, A_2)
  14. end
  15.  
  16. ตัวอย่าง
  17. while wait(0.5) do
  18. local A_1 = "Fire"
  19. local A_2 = "Consecutive Fire Bullets"
  20. local Event = game:GetService("ReplicatedStorage").Remotes.DoClientMagic
  21. Event:FireServer(A_1, A_2)
  22.  
  23. local A_1 = "Fire"
  24. local A_2 = "Consecutive Fire Bullets"
  25. local Event = game:GetService("ReplicatedStorage").Remotes.DoMagic
  26. Event:InvokeServer(A_1, A_2)
  27. end
  28. ปล่อยลูกไฟ
  29.  
  30. game:GetService("RunService").Heartbeat:Connect(function()
  31. for i,v in pairs(game.Workspace[".Ignore"][".ServerEffects"]:GetChildren()) do
  32. if v.Name == "Shard" or v.Name == "Diamond" then
  33. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  34. end
  35. end
  36. end)
  37. ยังใช้ได้เก็บเพรชกับขนนกให้เอง ขนนกกับเพรช วาร์ปมาหาตัวเราเองโดยไม่ต้องหา
  38. - Fiec
Advertisement
Add Comment
Please, Sign In to add comment