Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

I am trying to make an ability like the Hallow Jack ability in Slap Battles, how can I do this?

Asked by 2 years ago

I'm trying to make an ability like the Hallow Jack ability from Slap Battles, but it never seems to work. I've tried everything I could think of, and still, I cannot find why it doesn't work.

01-- Variables
02local ss = game:GetService("ServerStorage")
03local sword = ss.SwordAbility
04local shockwave = ss.Shockwave
05local tweensizeshockwave = ss.WaveTweenSizeMaterial
06local plrs = game:GetService("Players")
07local tweens = game:GetService("TweenService")
08-- Functions
09local function createShockwave(positionc)
10    local shockwaveclone = shockwave:Clone()
11    shockwaveclone.Parent = workspace
12    shockwaveclone.Position = positionc
13    print("Shockwave added")
14    local tweentrans = tweens:Create(shockwaveclone, TweenInfo.new(0.7, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, 0, false, 0), {Transparency = 1})
15    local tweenstuffies = tweens:Create(shockwaveclone, TweenInfo.new(2, Enum.EasingStyle.Quart, Enum.EasingDirection.Out, 0, false, 0), {Size = tweensizeshockwave.Size})
View all 43 lines...

Answer this question