|
| 03 Nov 2012 03:42 PM |
I am kind of bored so i will take request BUT i do NOT do any welding! Give me an idea that IS Not Cframing but IS A LOT of scripting! |
|
|
| Report Abuse |
|
|
MrChubbs
|
  |
| Joined: 14 Oct 2010 |
| Total Posts: 4969 |
|
| |
|
|
| 03 Nov 2012 03:43 PM |
| My welcome GUI is broken. Or atleast part of it is. Only one frame disappears out of the two frames I have. It's in my models. Please take it and fix it. |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 03:47 PM |
^^^
http://www.roblox.com/WelcomeGUI-Needs-Editing-For-JKINGMEGA-item?id=96401036 |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 03:50 PM |
| I'll get to work on it! :D |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 03:57 PM |
Try to decrypt one of my scripts, and I'd be impressed.
If you are actually interested, I'll pm you the code. |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 03:57 PM |
| Here you go:http://www.roblox.com/--item?id=96812582 |
|
|
| Report Abuse |
|
|
| |
|
|
| 03 Nov 2012 04:11 PM |
Can't send you a message, can't post the source. |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 04:18 PM |
| I'll send you a friend request then |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 04:22 PM |
| Make me a script where if the player says "i like wafflez" a ball pops up on top of their head and it follows them around while its growing. Then when they say "pumpkinz", it acts like a cannon and it lands 15 studs in front of the player. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
CptBenge
|
  |
| Joined: 22 Jun 2012 |
| Total Posts: 823 |
|
|
| 03 Nov 2012 04:39 PM |
I have alot of scripting if your up to it. Involves GUI Scripts and Game Scripts... It would help alot and it will keep you from being bored.
Add me as a friend and I'll message you and give you all the GUI's you need and a few scripts that need fixing. This will complete my game. You sound like a nice person to script for people :)
~Cptbenge. |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 04:49 PM |
| Ok invite me to a party! :D |
|
|
| Report Abuse |
|
|
| |
|
| |
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 03 Nov 2012 05:34 PM |
@Darkmist101
You gonna use a public hash breh?
Cant make ur own lolz, gotta use dem md5 |
|
|
| Report Abuse |
|
|
| |
|
|
| 03 Nov 2012 06:02 PM |
Can I ask for something else, to? I have a fully working script for making a VIP team, but whenever I'm in the game while testing, the other players are on the team, and nothing else.
print ("VIP Spawn Script Loaded")
-- list of people who will spawn here permission = {"IntelPhilosophy",}
texture = "" --see the wiki on how to change shirts.
function checkOkToLetIn(name) for i = 1,#permission do if (string.upper(name) == string.upper(permission[i])) then return true end end return false end
function onPlayerEntered(newPlayer) print("Person Spawned") repeat wait() until newPlayer.Character -- Wait for the character local human = newPlayer.Character:FindFirstChild("Humanoid") if (human ~= nil ) then if human.Parent.Torso.roblox.Texture == texture then print("Humanoid Is VIP") newPlayer.TeamColor=script.Parent.TeamColor elseif (checkOkToLetIn(human.Parent.Name)) then newPlayer.TeamColor=script.Parent.TeamColor end end end
game.Players.PlayerAdded:connect(onPlayerEntered) |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 06:12 PM |
This one is basically the same concept as well. I only want people with permissions to be able to use this, but it seems to be working for everyone.
names = {"IntelPhilosophy",}
script.Parent.MouseButton1Click:connect(function() local allowed = false for i = 1, #names do if game.Players.LocalPlayer.Name == names[i] then -- must be in local script. allowed = true end end if allowed then game.Players.LocalPlayer.TeamColor = BrickColor.new("Bright green") game.Players.LocalPlayer.Character.Humanoid.Health = 0 end end) |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 06:13 PM |
First the:repeat wait()until Will NOT work |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2012 06:17 PM |
local names={"IntelPhilosophy"} script.Parent.MouseButton1Click:wait() if names[game.Players.LocalPlayer.Name]then game.Players.LocalPlayer.TeamColor=BrickColor.new("Bright green") game.Players.LocalPlayer.Character:BreakJoints() end
or in a server script, for better effect...
local names={"IntelPhilosohpy"} script.Parent.MouseButton1Click:wait() for _,v in pairs(game:GetService("Players"):GetPlayers())do if script:IsDescendantOf(v)and names[v.Name]then v.TeamColor=BrickColor.new("Bright green") v:LoadCharacter() end end
BOMROMBOMBOBM
BOOM c: |
|
|
| Report Abuse |
|
|
| |
|
|
| 03 Nov 2012 06:46 PM |
@Intel Here:http://www.roblox.com/--item?id=9683290 Make sure the GUI is under StarterGui Make sure the script is under workspace Make sure Teams is under nothing! Follow these instructions then it will be working in no time! |
|
|
| Report Abuse |
|
|