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

How to make a script like Merely, has a thing under him when he joins Trade Hangout?

Asked by 10 years ago

So I am trying to explain he gets like this ring around his feet, that is active and it looks really cool?

0
Use BillboardGuis, presumably. Articulating 1335 — 10y
0
I am like a NOOB in scripting ChilliMax007 0 — 10y
0
RBX.lua.BillboardGui (Object) Articulating 1335 — 10y
0
Do you know umm the script? like it self? ChilliMax007 0 — 10y
View all comments (2 more)
0
You want me to write the entire script for you? Articulating 1335 — 10y
0
if its not long maybe I cna do it, but im a noob like COMPLETE NOOB IN SCRIPTING xD idk is it long? ChilliMax007 0 — 10y

1 answer

Log in to vote
0
Answered by 10 years ago

This is for making an Image of you in the BillBoard GUI.

me=game.Players.LocalPlayer.Character.head;
bg=Instance.new('BillboardGui',me)
bg.Size=UDim2.new(0,100,0,150)
bg.AlwaysOnTop=true;bg.Enabled=true;
frame=Instance.new('Frame', me.BillboardGui)
frame.Size=UDim2.new(0,200,0,200)
frame.Position=UDim2.new(0,-50, 0,-150)
frame.BackgroundTransparency=1;
x=Instance.new('ImageLabel',me.BillboardGui.Frame)
x.Size=UDim2.new(0, 200, 0, 200)
x.Position=UDim2.new(0, 0, 0, -40)
x.Image="http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&Format=Png&username=YOURNAMEHERE"
0
How do I pick like an image or something? and where do I put this script? ChilliMax007 0 — 10y
0
Fairly simple too. Put that script into a regular Script/ not Local. DhatBoiiPapi 10 — 10y
0
So just in normal scrit in game and what should happend? ChilliMax007 0 — 10y
0
A billboard should appear on top of your head displaying your Characters PNG. DhatBoiiPapi 10 — 10y
View all comments (5 more)
0
It displayer like a........A noob skin ChilliMax007 0 — 10y
0
That's because you need to put your ROBLOX name where it says YOURNAMEHERE. If you leave it saying "YOURNAMEHERE" it will fetch feed from noob player named YOURNAMEHERE. DhatBoiiPapi 10 — 10y
0
I did I was PLayer1 and I typed PLayer 1 ChilliMax007 0 — 10y
0
No. Type your ROBLOX USERNAME. Not Player1. It will show a picture of Player1 which is a noob, and not you. DhatBoiiPapi 10 — 10y
0
Oh okay ChilliMax007 0 — 10y
Ad

Answer this question