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

Trying to make a game like cube eat cube need help with camera?

Asked by 9 years ago
01local plr=game.Players.LocalPlayer
02local cam=game.Workspace.CurrentCamera
03local mouse=plr:GetMouse()
04 
05cam.CameraType="Scriptable"
06cam.CameraSubject=game.Workspace[plr.Name.."Cube"]
07while wait() do
08    local cf=game.Workspace[plr.Name.."Cube"].CFrame.p
09    local size=game.Workspace[plr.Name.."Cube"].Position.y/2
10    game.Workspace[plr.Name.."Cube"].CFrame=CFrame.new(cf.x,size,cf.z)*CFrame.Angles(0,0,0)
11    game.Workspace[plr.Name.."Cube"].Velo.velocity=(mouse.Hit.p-game.Workspace[plr.Name.."Cube"].Position)*Vector3.new(1.5,0,1.5)
12    cam:Interpolate(game.Workspace[plr.Name.."Cube"].CFrame+Vector3.new(0,game.Workspace[plr.Name.."Cube"].Siz.Value*0.8+20,0),game.Workspace[plr.Name.."Cube"].CFrame,0.01)
13    local val=game.Workspace[plr.Name.."Cube"]:GetMass()*100
14    game.Workspace[plr.Name.."Cube"].Velo.MaxForce=Vector3.new(val,val*2,val)
15end

It is very glitchy how can I fix that? You can see for yourself here: http://www.roblox.com/games/315301083/Minigames

0
You could just do this: cam.CoordinateFrame = CFrame.new(game.Workspace[plr.Name.."Cube"].Position,game.Workspace[plr.Name.."Cube"].Position + Vector3.new(0,10,0), game.Workspace[plr.Name.."Cube"].Position) TheDeadlyPanther 2460 — 9y

1 answer

Log in to vote
0
Answered by 9 years ago

This is a suggestion of a different way to fix it:

You could use camera.CoordinateFrame, which is basically changing where the camera is positioned, and where it is looking. It uses CFrame. E.G:

01local cam = game.Workspace.CurrentCamera
02-- inserts a part to look at
03local part = Instance.new("Part",game.Workspace)
04part.Anchored = true
05part.BrickColor = BrickColor.new("Really black")
06part.Position = Vector3.new(0,10,0)
07-- while loop to change where the camera is facing
08while wait() do
09    cam.CoordinateFrame = CFrame.new(game.Workspace.Baseplate.Position,part.Position)
10end

CFrame values basically go like this:

Argument #1:

Vector3 value, position of the camera, in the script above, it makes the position of the camera the same as Baseplate's position.

Argument #2:

Vector3 value, what the camera is looking at, in the script above, it is looking at the black Part.

For more info on CFrame: http://wiki.roblox.com/index.php/CFrame

When trying to be above a part that is moving, you need to have the first argument of CoordinateFrame's CFrame to be in the same position of the part that is moving, so you can always see it, and that it is in the center of the screen. Like so:

1local p = game.Workspace.TestPart
2p.Anchored = true
3local cam = game.Workspace.CurrentCamera
4 
5while wait(.01) do
6    p.Position = p.Position + Vector3.new(0.01,0,0) -- moves it on the X axis.
7    cam.CoordinateFrame = CFrame.new(p.Position + Vector3.new(0,10,0),p.Position )
8end

This script should move a Part on the X axis every hundredth of a second, and make the camera look at the Part. Also, the reason I am adding to the CoordinateFrame's first argument is because I want to see the Part, not look at it while inside the Part (which is basically impossible).

Ad

Answer this question