01 | game [ "Run Service" ] .RenderStepped:connect( function () |
02 | if Mouse.target then |
03 | CloneFrom.Model:SetPrimaryPartCFrame(CFrame.new(math.floor(Mouse.hit.p.X),math.floor(game.Lighting [ script.Parent.Parent.PlayerGui.Gui.Insert.Value ] .Model.Primary.Position.Y),math.floor(Mouse.hit.p.Z))) |
04 | end |
05 | end ) |
06 |
07 | Mouse.KeyDown:connect( function (key) |
08 | if key = = "r" then |
09 | local model = CloneFrom.Model |
10 | model.PrimaryPart = model.Primary |
11 | model:SetPrimaryPartCFrame() |
12 | end |
13 | end ) |
Above is my current code.
I've tried different ways for the SetPrimaryPartCFrame() rotation but I can't seem to make it work
Any help?
UIS
KeyDown is deprecated, use the UserInputService instead.
Example:
1 | local uis = game:GetService( "UserInputService" ) |
2 |
3 | uis.InputBegan( function (InputObject) |
4 | if inputObject = Enum.KeyCode.R then |
5 | --Code Here |
6 | end |
7 | end ) |
http://wiki.roblox.com/index.php?title=API:Class/UserInputService
I'm not sure what you can do next, try looking inside the ROBLOX tools to see how they did it.