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

Please help CFrame a brick around my Character? This is not spam.

Asked by 9 years ago

HOW IS THIS SPAM? Just because other JaJa were trolling, that doesn't mean every JaJa post is a hate post.

Please help CFrame a brick around my Character?

So far I have:

PartToCFrame = Instance.new("Part",workspace.ReturnedJaJa)
PartToCFrame.CFrame = workspace.ReturnedJaJa * 
CFrame.new(math.rad(1#99, 0, 0)) *
CFrame.new(math.sin(22, 0, 0))

--Please help?
0
'Just because other JaJa were trolling, that doesn't mean every JaJa post is a hate post.' Well, can you blame us? YOU were posting rude and insulting Comments, Questions, and Answers for two hours yesterday, we'd panic that you'd have been posting spam again. TheeDeathCaster 2368 — 9y
0
Well, it's hypocrisy if we assaulted them on a post that had nothing to do with trolling. Diitto 230 — 9y

2 answers

Log in to vote
0
Answered by
Diitto 230 Moderation Voter
9 years ago

Here's a simple script for you:

local Player=Game:service'Players'.localPlayer;
local Character=assert(Player.Character,'Player does not have a character.');
local Part=Instance.new('Part',Character);
local Rotation=0;
Game:service'RunService'.renderStepped:connect(function()
    local newPosition=Character:GetModelCFrame() 
        * CFrame.Angles(math.rad(Rotation), 0, 0) 
        * CFrame.new(0, 0, 5);
    Rotation=Rotation + .1;
end);

Also, I hope that this is not another troll.

0
Answers should consist of explanations toward the question, as well as code examples. Goulstem 8144 — 9y
0
Oh shush, Goulstem. Don't spout your nonsense when you do not even know the environment. On a normal answer, this would be more suited. Diitto 230 — 9y
Ad
Log in to vote
-1
Answered by 9 years ago

Hello, I am new to SH.

Your CFrame is horridly off.

You can learn to CFrame more here at: wiki.roblox.org/index.php/CFraming

I don't know anything about JaJa spam but, I think this is the best way to learn.

0
Answers should consist of explanations toward the question, as well as code examples. Goulstem 8144 — 9y

Answer this question