Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Just a quick easy script to level up in safe zone:
- ปล่อยสกิลได้ใน save zone ให้เลือกชื่อธาตุและ สกิลที่จะปล่อยลงในช่อง
- Code:
- while wait(0.5) do
- local A_1 = "ElementName"
- local A_2 = "Skill"
- local Event = game:GetService("ReplicatedStorage").Remotes.DoClientMagic
- Event:FireServer(A_1, A_2)
- local A_1 = "ElementName"
- local A_2 = "Skill"
- local Event = game:GetService("ReplicatedStorage").Remotes.DoMagic
- Event:InvokeServer(A_1, A_2)
- end
- ตัวอย่าง
- while wait(0.5) do
- local A_1 = "Fire"
- local A_2 = "Consecutive Fire Bullets"
- local Event = game:GetService("ReplicatedStorage").Remotes.DoClientMagic
- Event:FireServer(A_1, A_2)
- local A_1 = "Fire"
- local A_2 = "Consecutive Fire Bullets"
- local Event = game:GetService("ReplicatedStorage").Remotes.DoMagic
- Event:InvokeServer(A_1, A_2)
- end
- ปล่อยลูกไฟ
- game:GetService("RunService").Heartbeat:Connect(function()
- for i,v in pairs(game.Workspace[".Ignore"][".ServerEffects"]:GetChildren()) do
- if v.Name == "Shard" or v.Name == "Diamond" then
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- end)
- ยังใช้ได้เก็บเพรชกับขนนกให้เอง ขนนกกับเพรช วาร์ปมาหาตัวเราเองโดยไม่ต้องหา
- - Fiec
Advertisement
Add Comment
Please, Sign In to add comment