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

Recreating Arcane Adventures? (Repost)

Asked by 8 years ago

So I've been working on a script that needs a lot of help, I'm making it open source for anybody who wants something but I currently only have the main basics with an exploding fireball. Debounce is one of my biggest issues so I made the whole script deactivate which is horrible, there's no "summoning circle" which is annoying, and the part that gets spawned in gets removed instantly. This is just the single "Q" blast, all I really need is for the "explosion" part to work and maybe I'll add a "humanoid damage" script onto it so it isn't an instant kill.

01local Tool = script.parent
02local ws = game:GetService("Workspace")
03local me = game.Players.LocalPlayer
04handle = me.Character.Torso
05 
06 
07Tool.Equipped:connect(function(mouse)
08    print("Ready!")
09end)
10 
11local player = game.Players.LocalPlayer
12local Mouse = player:GetMouse()
13Anim = script.Animation
14 
15 
View all 80 lines...

I'd really appreciate it if anybody could help.

0
you can put this inside a local script in a tool and test it out for yourself, just add the animation inside the script and name it "Anim" Shadowthaumaturge 97 — 8y
0
Whos Eryn rexpex 45 — 7y
0
Help me plss To Create this Script and how you create Alegre_satinitigan 0 — 5y

2 answers

Log in to vote
0
Answered by 8 years ago

Before you read, know that there might be grammar or spelling issues that you might not be able to decipher.

You might not understand some of the things I'm trying to explain to you.

There ALSOOOO might be coding errors.

I can't comment on your post for some reason so, if you're having one of the above problems, friend me on ROBLOX.

Or, if you can message me, message me. lol

Hi there. I played around with your animation, and I figured out your problem.

I also found other issues that you probably want to fix.

You need to create the WHOLE BLAST before you add the explosion function.

If that didn't make sense, you have to add your particles, sound and velocity before you make your function that explodes your projectile.

This is because your function checks if your projectile is being touched before it even moved.

Also, there are two problems with your script.

In your explosion function, it only checks if the hitpart's parent's name does not equal the user's name.

However, if the projectile touched the user's hat, it would have exploded the user. This is because the hat's parent wouldn't equal the user's name.

The other problem is that you assigned your explosion's position to the blast.

You should have assigned the explosion's position to the blast's POSITION.

To fix your explosion function, replace it with this new one:

01p.Touched:connect(function(hitpart)
02          print("KABOOM!")
03 
04          if hitpart.Parent.Name ~= player.Name and hitpart.Parent.Parent.Name ~= player.Name then  --Added another condition that fixes the hat glitch.
05 
06              local Explosion = Instance.new("Explosion")
07              Explosion.BlastPressure = 100
08              Explosion.BlastRadius = 3
09              Explosion.Position = p.Position --Fixed the explosion's position.
10              Explosion.Parent = game.Workspace
11              p:Destroy()
12 
13          end
14 
15      end)

ALSO, you have two variables that are assigned to the player. You only need one.

And, I notice you're not good with debounces. lol

What you want to do is make a variable and check if it is true or false.

Here's the debounce method I use:

01local player = game.Players.LocalPlayer
02local mouse = player:GetMouse()
03 
04local enabled = true --Create the debounce variable.
05 
06local cooldown = 2
07 
08mouse.KeyDown:connect(function(key)
09    if not enabled then return end --If the variable isn't true, then don't run code.
10    enabled = false --Makes the variable false so the code doesn't run too many times  at      ---------once                   
11 
12    if key == "q" then
13        --Run code.
14    end
15 
16    wait(cooldown) --Waits two seconds before the function can run again.
17    enabled = true --Makes the variable true so the function can run again.
18end)

So, in the start of the function, the code checks if the debounce variable is false.

If it is false, then it doesn't run the code.

Now, we make the debounce variable false so the code can't run too many times at once.

You might be asking, "why doesn't the code disable?".

It doesn't disable because our code didn't check if it was disabled.

We only checked the variable at the start of the function.

This is also why the code doesn't run more than one time at once.

To fix your WHOLE script, replace it with this organized new one:

001local ws = game:GetService("Workspace")
002 
003 
004local Tool = script.parent
005 
006local player = game.Players.LocalPlayer
007local Mouse = player:GetMouse()
008local handle = player.Character.Torso
009 
010local Anim = script:WaitForChild("Animation")
011 
012local enabled = true
013 
014 
015Tool.Equipped:connect(function(mouse)
View all 104 lines...
0
Ignore what I said above. I can comment on my answer. If you have any of the problems above, just comment here. :D iiTylerSoul 56 — 8y
0
Oops. I had an error in my comment, so ignore it. If you can't decipher some grammar or spelling issues / don't understand some of the things I tried to explain to you / the code I gave you doesn't work, then ask. iiTylerSoul 56 — 8y
0
Also, if this answer works for you, please accept it as your answer. (: iiTylerSoul 56 — 8y
0
And, if you want to make your projectile more realistic, add an explosion sound or something on to the explosion function. iiTylerSoul 56 — 8y
View all comments (3 more)
0
Sorry for so many comments. But, you might want to make it where it doesn't explode when it touches the Baseplate. iiTylerSoul 56 — 8y
0
This is PERFECT! Thank you so much! I can add the sound effects later on and I really appreciate the help on this one! Shadowthaumaturge 97 — 8y
0
No problem. :D iiTylerSoul 56 — 8y
Ad
Log in to vote
0
Answered by 8 years ago

Thank you ^~^ Final product for core script, you're welcome newbies! :D

001local ws = game:GetService("Workspace")
002 
003 
004local Tool = script.parent
005 
006local player = game.Players.LocalPlayer
007local Mouse = player:GetMouse()
008local handle = player.Character.Torso
009 
010local Anim = script:WaitForChild("Animation")
011 
012local enabled = true
013 
014 
015Tool.Equipped:connect(function(mouse)
View all 132 lines...
0
Hello there can i get Script of arcane and how you Create a Script like Arcane adcentures Alegre_satinitigan 0 — 5y

Answer this question