Okay so basically i'm doing an Amaterasu script and it is for FE ,but when i get to the CFrame part it doesn't work
01 | --local script |
02 | local deez = game.ReplicatedStorage.MyRemoteEvent |
03 | local Player = game.Players.LocalPlayer --find player |
04 | local Character = Player.Character |
05 | local debounce = true |
06 | local Mouse = Player:GetMouse() |
07 | function relay() |
08 | local hit = Mouse.hit.p |
09 | local userInputService = game:GetService( "UserInputService" ) |
10 | userInputService.InputBegan:connect( function (input, processed) |
11 | if Character.Head.Texture = = "http://www.roblox.com/asset/?id=108227137" then |
12 | if input.KeyCode = = Enum.KeyCode.Z then |
13 | if debounce = = true then |
14 | debounce = false |
15 | deez:FireServer( "hit" ) |
01 | --script |
02 | local deez = game.ReplicatedStorage.MyRemoteEvent |
03 |
04 | deez.OnServerEvent:connect( function (player, hit) |
05 | local character = player.Character |
06 | local z = Instance.new( "Part" ) |
07 | z.Parent = game.Workspace |
08 | z.Name = "bb" |
09 | z.CFrame = hit |
10 | z.Transparency = 1 |
11 | z.Size = Vector 3. new( 5.81 , 0.66 , 7.65 ) |
12 | local x = Instance.new( "ParticleEmitter" ,game.Workspace.bb) |
13 | x.VelocitySpread = 50 |
14 | x.Rate = 50 |
15 | local transparency = NumberSequence.new( { NumberSequenceKeypoint.new( 0 , 0.5 , 0 ),NumberSequenceKeypoint.new( 1 , 0.5 , 0 ) } ) |
The error is at the line Z.CFrame = hit but i can't figure out how to fix it. This is the output
1 | Workspace.Player 1. Amaterasu: 8 : bad argument # 3 to 'CFrame' (CFrame expected, got nil ) |
Thanks in Advance. Yours Sincerely far.
Your issue is that when you fire 'deez' you're passing "hit" which is a string type. In your server script for when 'deez' is fired you're doing:
1 | z.CFrame = hit |
hit is equal to that string you're passing that's "hit." Basically it's doing this:
1 | z.CFrame = "hit" |
A string is not a CFrame value. You need to do:
1 | deez:FireServer(CFRAME_VALUE) |
Read this to learn more about CFrames:
Hope I helped :)
1 | Okay, so, I didn't really know what you wanted to do exactly with this script. But, I got bored and decided to fix a couple errors in your script. |
Problem:
It seemed you were not connecting the function
"relay" to any form ofevent
or whatever. So I just used a tool's equipped event
to solve this problem. You can change it back to how you like. You also didn't reference to the players "face"
or the decal
in the player's head which is what has the Texture
--not the player's head alone. You also had something wrong with the uploading of your ParticleEmitter
Texture Id. So, I just added a random one in there to substitute for it. Lastly, you had problems with the carrying over of the FireServer
value so I just changed it from a string to mouse.Hit.p . In replace of the part's CFrame I just put it to the player's torso CFrame. You can change anything back how you like.
LocalScript:
01 | local deez = script.Parent:WaitForChild( "RemoteEvent" ) --Also changed the direction to get to the Remote event and renamed it. |
02 |
03 | local Player = game.Players.LocalPlayer --find player |
04 |
05 | local Character = Player.Character |
06 | local debounce = true |
07 | local Mouse = Player:GetMouse() |
08 | function relay() |
09 | local hit = Mouse.hit.p |
10 | local userInputService = game:GetService( "UserInputService" ) |
11 | userInputService.InputBegan:connect( function (input, processed) |
12 | if Character:WaitForChild( "Head" ):WaitForChild( "face" ).Texture = = "http://www.roblox.com/asset/?id=20722053" then --It also errored here because you did not reference to the face. Which is in the head of the player and has the texture. |
13 | --http://www.roblox.com/asset/?id=20722053(mine) |
15 | if input.KeyCode = = Enum.KeyCode.Z then |
Script:
01 | local deez = script.Parent:WaitForChild( "RemoteEvent" ) --Also changed the direction to get to the Remote event and renamed it. |
02 |
03 |
04 |
05 | deez.OnServerEvent:connect( function (player, hit) |
06 | local character = player.Character |
07 | local z = Instance.new( "Part" ) |
08 | z.Parent = game.Workspace |
09 | z.Name = "bb" |
10 | z.CFrame = character.Torso.CFrame --Didn't know if you wanted it to be directly at the player or where they click. |
11 | z.Transparency = 1 |
12 | z.CanCollide = false --If you wanted it to somehow move to where you click then ignore lines 12-13 by deleting it. |
13 | z.Anchored = true |
14 | z.Size = Vector 3. new( 5.81 , 0.66 , 7.65 ) |
15 | local x = Instance.new( "ParticleEmitter" ,game.Workspace.bb) |
1 | Note, just ignore the top portion for some reason when I made the answer it decided to add a comment about what I thought into a script and I can't change it. |
I've taken both of your answers into consideration and this is what i have now .
01 | --local script |
02 | local deez = game.ServerStorage.deez |
03 | local Player = game.Players.LocalPlayer --find player |
04 | local Character = Player.Character |
05 | local debounce = true |
06 | local Mouse = Player:GetMouse() |
07 | function relay() |
08 | local hit = Mouse.hit.p |
09 | local userInputService = game:GetService( "UserInputService" ) |
10 | userInputService.InputBegan:connect( function (input, processed) |
11 | if Character.Head.face.Texture = = "http://www.roblox.com/asset/?id=108227137" then |
12 | if input.KeyCode = = Enum.KeyCode.Z then |
13 | if debounce = = true then |
14 | debounce = false |
15 | deez:FireServer(hit) |
01 | --script |
02 | local deez = game.ServerStorage.deez |
03 |
04 | deez.OnServerEvent:connect( function (player, hit) |
05 | local character = player.Character |
06 | local z = Instance.new( "Part" ) |
07 | z.Parent = game.Workspace |
08 | z.Name = "bb" |
09 | z.CFrame = hit |
10 | z.Transparency = 1 |
11 | z.Size = Vector 3. new( 5.81 , 0.66 , 7.65 ) |
12 | local x = Instance.new( "ParticleEmitter" ,game.Workspace.bb) |
13 | x.VelocitySpread = 50 |
14 | x.Rate = 50 |
15 | local transparency = NumberSequence.new( { NumberSequenceKeypoint.new( 0 , 0.5 , 0 ),NumberSequenceKeypoint.new( 1 , 0.5 , 0 ) } ) |
Even with this it still wont work.