Script:
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
03 | local rasengan = game.Lighting.Rasengan |
04 | local copy = rasengan:Clone() |
05 | local toggle = false |
06 |
07 | mouse.KeyDown:connect( function (key) |
08 | if not toggle and key = = "r" then |
09 | copy.Parent = game.Players.LocalPlayer.Character |
10 | toggle = true |
11 | end |
12 | end ) |
This is the script that I use when I press r it equips my Rasengan from lighting but doesn't appear in my hand but somewhere else in the baseplate.
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
03 | local rasengan = game.Lighting.Rasengan |
04 | local copy = rasengan:Clone() |
05 | local toggle = false |
06 |
07 | mouse.KeyDown:connect( function (key) |
08 | if not toggle and key = = "r" then |
09 | copy.Parent = player.Backpack |
10 | toggle = true |
11 | end |
12 | end ) |
01 | --Im assuming your rasengan is a singular ball, in which case you'll need to weld it to your character |
02 |
03 | local player = game.Players.LocalPlayer |
04 | local mouse = player:GetMouse() |
05 | local rasengan = game.Lighting.Rasengan |
06 | local copy = rasengan:Clone() |
07 | local toggle = false |
08 |
09 | mouse.KeyDown:connect( function (key) |
10 | if not toggle and key = = "r" then |
11 | rasengan.Parent = player.Character |
12 | local weld = Instance.new( "Weld" ,player.Character [ "Right Arm" ] ) |
13 | weld.Part 0 = rasengan |
14 | weld.Part 1 = player.Character [ "Right Arm" ] |
15 | weld.C 0 = weld.C 0 * CFrame.new( 0 , 0 , 0 ) -- Adjust the placement here |
16 | toggle = true |
17 | end |
18 | end ) |
It could be a welding issue. Are you using qPerfectionWeld? It's a script that you put inside your tool. If you aren't, then what you do is you put it inside the TOOL, not the handle/part. Anyway, here's the link: https://www.roblox.com/library/181259635/qPerfectionWeld-Perfect-welding-for-EVERY-situat