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

Pet Script positioning/rotating problems?

Asked by 8 years ago
Edited 8 years ago
01game.Players.PlayerAdded:connect(function(plr)
02    plr.CharacterAdded:connect(function(char)
03        --
04        local firefly = Instance.new("Part", game.Workspace)
05        firefly.Size = Vector3.new(2,2.4,2)
06        firefly.Transparency = 0.5
07        firefly.CanCollide = false
08        firefly:BreakJoints()
09        firefly.Name = plr.Name .. "'s Firefly"
10        --
11        local bp = Instance.new("BodyPosition", firefly)
12        bp.maxForce = Vector3.new(math.huge,math.huge,math.huge)
13 
14        --
15        while wait() do
View all 22 lines...

So this scripts creates a brick and it follows the player, however it always seems to follow on the same axis (hard to explain) and never rotates with the player(so how would I do that). Also how would I make It so this brick always pings back to the right side of the player? would I create a brick that is welded to the player to the right so the brick has a target position? I don't know , any help would be much appreciated thanks :)

1 answer

Log in to vote
0
Answered by 8 years ago

This is a snippet from my own pet script I have, maybe this will help.

01local bg=Instance.new("BodyGyro", v)
02bg.MaxTorque=Vector3.new(math.huge,math.huge,math.huge)
03local bp=Instance.new("BodyPosition", v)
04bp.MaxForce=Vector3.new(math.huge,math.huge,math.huge)
05while rs:wait() do --game:GetService("RunService").RenderStepped
06    bp.Position=player.Character.Head.CFrame*CFrame.new(2,.5,0).p
07    bg.CFrame=player.Character.Head.CFrame
08    bg.CFrame=bg.CFrame*CFrame.Angles(0,0,0)
09    bp.D=515
10end
0
thanks man! this actually helped more than you'd think ahah, much appreciated! Bubbles5610 217 — 8y
0
No problem. It was most likely the absence of BodyGyro, which made the rotation all wacky, lol. SimplyRekt 413 — 8y
Ad

Answer this question