Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ["Appa"] = {
- ["Description"] = "Apperation Spell",
- ["Class"] = "Action",
- ["Name"] = "Appa",
- ["Cooldown"] = 0,
- ["Damage"] = 100,
- ["Range"] = 1000,
- ["Speed"] = 100,
- ["Ammo"] = 1,
- ["DeleteDelay"] = .7,
- ["Lock"] = nil,
- ["Props"] = {
- ["Color"] = Color3.fromRGB(255,255,255),
- ["Material"] = Enum.Material.Neon
- },
- ["Callback"] = function(Tool,Mouse,User)
- local appaAnim = User.Character.Humanoid:LoadAnimation(game.ReplicatedStorage.Animations.apparate);
- appaAnim:Play(0.3, 1, 1.5);
- wait(.75)
- User.Character.HumanoidRootPart.Position = Mouse.p
- end,
- },
- ["VROOM"] = {
- ["Description"] = "MAKE U GO VROOM.",
- ["Class"] = "Projectile",
- ["Name"] = "VROOM",
- ["Cooldown"] = 0,
- ["Damage"] = 0,
- ["Range"] = 10000,
- ["Speed"] = 100,
- ["Ammo"] = 5,
- ["DeleteDelay"] = .7,
- ["Lock"] = nil,
- ["Callback"] = function(Humanoid,HitPart,Mouse,Self)
- if Humanoid then
- Humanoid.Sit = true
- local Speed = 4000
- local Force = 8000000
- local TotalForce = Force
- local KnockBack = Instance.new("BodyVelocity")
- KnockBack.Parent = HitPart.Parent:FindFirstChild("HumanoidRootPart")
- KnockBack.MaxForce = Vector3.new(TotalForce,TotalForce,TotalForce)
- KnockBack.Velocity = Humanoid.Parent:FindFirstChild("HumanoidRootPart").CFrame.LookVector * Speed
- end
- end,
- ["Props"] = {
- ["Color"] = Color3.fromRGB(255,0,0),
- ["Material"] = Enum.Material.Neon
- },
- },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement