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

Buggy Rotation? Grid Placement System.

Asked by 5 years ago

Hello,

I have recently been making a Grid placement system for my game everything is going well except for the rotation.

https://gyazo.com/ee0466084ef50e1ca7a79a84df355b63

Issue 1: When I rotate when the mouse isn't moving, its really buggy. But when it is moving it's fine.

Issue 2: When the object is placed, the placed object isn't rotated.

Code:

01local mouse = game.Players.LocalPlayer:GetMouse()
02local Model = workspace:WaitForChild('Window1')
03local posX = mouse.Hit.X
04local posY = mouse.Hit.Y
05local posZ = mouse.Hit.Z
06local gridSize = 1
07local Rot = 0
08 
09local function rotate()
10    Rot = Rot + 45
11    Model:SetPrimaryPartCFrame(Model.PrimaryPart.CFrame * CFrame.Angles(0, math.rad(Rot), 0))
12end
13 
14mouse.KeyDown:connect(function(key)
15    if key == "r" then
View all 42 lines...

Thank You.

2 answers

Log in to vote
0
Answered by
ScuffedAI 435 Moderation Voter
5 years ago
Edited 5 years ago

Regarding issue 2: the object doesn't get rotated because on line 36, you only provide the position of the object and not its orientation.

Edit:

To provide the orientation you would simply add CFrame Angles to the CFrame. Like such:

1-- I created a variable for each CFrame to make it easier to read.
2 
3local position = CFrame.new(posX, posY + 3.3, posZ)
4local orientation = CFrame.Angles(0, math.rad(Rot), 0))
5 
6WindowCopy:SetPrimaryPartCFrame(position *  orientation)
Ad
Log in to vote
0
Answered by 5 years ago

How would I provide the rotation?

Answer this question