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

How to get the CFrame from the Client ?

Asked by
farrizbb 465 Moderation Voter
8 years ago
Edited 8 years ago

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
02local deez = game.ReplicatedStorage.MyRemoteEvent
03local Player = game.Players.LocalPlayer--find player
04local Character = Player.Character
05local debounce = true
06local Mouse = Player:GetMouse()
07function 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")
View all 22 lines...
01--script
02local deez = game.ReplicatedStorage.MyRemoteEvent
03 
04deez.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 = Vector3.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)})
View all 24 lines...

The error is at the line Z.CFrame = hit but i can't figure out how to fix it. This is the output

1Workspace.Player1.Amaterasu:8: bad argument #3 to 'CFrame' (CFrame expected, got nil)

Thanks in Advance. Yours Sincerely far.

0
I agree with @AstreaDev . You are carrying over the string "hit" into the place of the parameter hit in your OnServerEvent. You can't get a CFrame from a string which is why it is printing nil. You can use the first parameter "player" for their CFrame or carry the players CFrame over. yougottols1 420 — 8y

3 answers

Log in to vote
2
Answered by 8 years ago

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:

1z.CFrame = hit

hit is equal to that string you're passing that's "hit." Basically it's doing this:

1z.CFrame = "hit"

A string is not a CFrame value. You need to do:

1deez:FireServer(CFRAME_VALUE)

Read this to learn more about CFrames:

CFrame Wikipedia

Hope I helped :)

0
I still don't see why its wrong because hit is a CFrame Value is it a variable for Mouse.hit.p farrizbb 465 — 8y
0
Well, you see, in line 15 of the local script you're doing: deez:FireServer("hit"). If you want to pass the hit variable which is Mouse.hit.p you need to do: deez:FireServer(hit) AstrealDev 728 — 8y
Ad
Log in to vote
1
Answered by 8 years ago
Edited 8 years ago
1Okay, 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:

01local deez = script.Parent:WaitForChild("RemoteEvent")--Also changed the direction to get to the Remote event and renamed it.
02 
03local Player = game.Players.LocalPlayer--find player
04 
05local Character = Player.Character
06local debounce = true
07local Mouse = Player:GetMouse()
08function 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.
15        if input.KeyCode == Enum.KeyCode.Z then
View all 27 lines...

Script:

01local deez = script.Parent:WaitForChild("RemoteEvent")--Also changed the direction to get to the Remote event and renamed it.
02 
03 
04 
05deez.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 = Vector3.new(5.81, 0.66, 7.65)
15                local x = Instance.new("ParticleEmitter",game.Workspace.bb)
View all 27 lines...
1Note, 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.
Log in to vote
0
Answered by
farrizbb 465 Moderation Voter
8 years ago
Edited 8 years ago

I've taken both of your answers into consideration and this is what i have now .

01--local script
02local deez = game.ServerStorage.deez
03local Player = game.Players.LocalPlayer--find player
04local Character = Player.Character
05local debounce = true
06local Mouse = Player:GetMouse()
07function 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)
View all 22 lines...
01--script
02local deez = game.ServerStorage.deez
03 
04deez.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 = Vector3.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)})
View all 24 lines...

Even with this it still wont work.

Answer this question